summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2024-09-18Add support for target loongarch64.HEADmasterZach van Rijn2-13/+21
2024-09-18bootstrap: update mcmtools for newer GCC, enable optimizations.Zach van Rijn1-1/+1
2024-08-07bootstrap: update mcmtools to fix QEMU regression.Zach van Rijn1-2/+2
2024-08-05setup-abuild: patch 'apk-tools' for m68k support. fixes #10.Zach van Rijn1-0/+15
2024-08-05bootstrap: disable default pie for m68k. fixes #9.Zach van Rijn1-1/+1
2024-08-05bootstrap: s/GCC_CONFIG_FOR_TARGET/GCC_CONFIGZach van Rijn1-10/+10
The 'config.mak' that is generated by the upstream 'bootstrap' script (not this one) uses GCC_CONFIG, but we might want to replace or override it. The GCC_CONFIG_FOR_TARGET variable is not evaluated after GCC_CONFIG, so it is unsuitable toward that end.
2024-08-04Add support for target m68k.Zach van Rijn1-1/+6
2024-08-03setup-abuild: work around upstream 500 error.Zach van Rijn1-1/+7
2024-08-03bootstrap: update mcmtools to avoid zlib ftbfs error.Zach van Rijn1-2/+2
2024-08-02setup-abuild: multiple improvements and fixes.Zach van Rijn1-13/+13
* Instruct 'curl' to follow redirects (required for GitHub links) * Update OpenSSL with a TEMPORARY WORKAROUND (Ref. #6) * Remove artifact from earlier iteration which substituted 'ar' for a tuple-prefixed version. Fixes #7. * Add 'ZSTD=no' to the 'apk-tools' configuration, which appeared as a build error due to missing <zstd.h>. We do not need it.
2024-08-01Add support for target mips64.Zach van Rijn1-1/+6
2024-01-15Move 'config.mak' customization to the correct place.Zach van Rijn1-41/+72
2024-01-11Workaround for perl brokenness. Add GCC configure flags.Zach van Rijn3-17/+61
2023-09-19Miscellaneous updates/improvements. Fixes #1.Zach van Rijn2-21/+45
2022-12-25Pull in upstream 'abuild' patch.Zach van Rijn2-2/+3
2022-12-20Use latest mcmtools. Fix miscellaneous oversights.Zach van Rijn2-7/+15
2022-12-10Initial proof of concept.Zach van Rijn5-0/+1450
Currently, if you run this on a Linux box as an unprivileged user: $ ./bootstrap armv7 /some/scratch/directory you will end up with, completely from source: rootfs-armv7l-adelie-linux-musleabihf-preimage.tgz which is an armv7-native rootfs with all the tools that you need to build our distribution. (Substitute your favorite target). Work that remains to be done involves fixing "bootstrap.sh" in the packages.git repository, then plumbing that back into this project so that the complete process can be automated.