├── .hgignore ├── .hgtags ├── README ├── config ├── cross-compiler.sh ├── download.sh ├── host-tools.sh ├── more ├── README ├── bisectinate.sh ├── buildall-native.sh ├── buildall.sh ├── chroot-splice.sh ├── clean.sh ├── cronjob.sh ├── cross-smoke-test.sh ├── dev-environment-from-build.sh ├── for-each-target.sh ├── migrate-kernel.sh ├── miniconfig.sh ├── native-build-from-build.sh ├── record-commands.sh ├── repo.sh ├── report-recorded-commands.sh ├── run-emulator-from-build.sh ├── smoketest-all.sh ├── smoketest-report.sh ├── smoketest.sh ├── test.sh ├── timeout.sh ├── tweak.sh └── zapchroot.sh ├── native-compiler.sh ├── root-filesystem.sh ├── simple-cross-compiler.sh ├── sources ├── README ├── baseconfig-busybox ├── baseconfig-linux ├── baseconfig-uClibc ├── download_functions.sh ├── functions.sh ├── include.sh ├── patches │ ├── bash-fixfunc.patch │ ├── bash-fixread.patch │ ├── bash-fixsize.patch │ ├── binutils-bfd.patch │ ├── binutils-mips.patch │ ├── binutils-screwinfo.patch │ ├── binutils-shpcrel.patch │ ├── elf2flt-make.patch │ ├── elf2flt-musl.patch │ ├── elf2flt-stack.patch │ ├── gcc-core-armeb.patch │ ├── gcc-core-fix-inhibit-libc.patch │ ├── gcc-core-fix52.patch │ ├── gcc-core-fixmips64.patch │ ├── gcc-core-libgcceh.patch │ ├── gcc-core-macrosity.patch │ ├── gcc-core-musl.patch │ ├── gcc-core-sh2.patch │ ├── gcc-core-shpic.patch │ ├── gcc-core-softfloat-fix.patch │ ├── gcc-core-stopdefaults.patch │ ├── gcc-core-stopdefaults2.patch │ ├── gcc-core-unbreak-armv4t.patch │ ├── gcc-core-weakbugs.patch │ ├── gcc-core-xgcc.patch │ ├── gcc-g++-is-stupid.patch │ ├── linux-arm-qemuirq.patch │ ├── linux-deeplystupid.patch │ ├── linux-fixsh4.patch │ ├── linux-fixuClibc.patch │ ├── linux-hack.patch │ ├── linux-jcore.patch │ ├── linux-noperl-timeconst.patch │ ├── linux-powerpc-altivec.patch │ ├── linux-powerpc-bamboo.patch │ ├── linux-sh4-fixifconfig.patch │ ├── linux-shutup.patch │ ├── musl-mips.patch │ ├── musl-regex.patch │ ├── toybox-grep.patch │ ├── uClibc++-norelpath.patch │ ├── uClibc++-nozdefs.patch │ ├── uClibc++-unwind-cxx.patch │ ├── uClibc-fixlocalestruct.patch │ ├── uClibc-fixm68k.patch │ ├── uClibc-headerdep.patch │ ├── uClibc-lddwithmusl.patch │ ├── uClibc-mips-siginfo.patch │ ├── uClibc-mkostemp.patch │ ├── uClibc-mmu.patch │ ├── uClibc-nofollow.patch │ ├── uClibc-posix_spawn.patch │ ├── uClibc-pthread_once.patch │ ├── uClibc-ruserpass.patch │ ├── uClibc-setns.c │ ├── uClibc-setns.patch │ ├── uClibc-shutupldd.patch │ ├── uClibc-sparcfix.patch │ └── uClibc-strndup.patch ├── root-filesystem │ ├── bin │ │ └── getent │ ├── etc │ │ ├── group │ │ ├── mdev.conf │ │ ├── mtab │ │ ├── os-release │ │ ├── passwd │ │ └── resolv.conf │ ├── init │ ├── sbin │ │ ├── init.sh │ │ ├── record-commands │ │ ├── setup-chroot │ │ └── zapchroot │ └── src │ │ ├── hello.c │ │ ├── hello.cpp │ │ ├── thread-hello.c │ │ └── thread-hello2.c ├── sections │ ├── README │ ├── bash.build │ ├── binutils.build │ ├── busybox.build │ ├── ccwrap.sh │ ├── distcc.build │ ├── elf2flt.sh │ ├── gcc.sh │ ├── linux-headers.sh │ ├── make.build │ ├── musl.build │ ├── toybox.build │ ├── uClibc++.build │ └── uClibc.build ├── targets │ ├── armv4l │ ├── armv4tl │ ├── armv5l │ ├── armv6l │ ├── i486 │ ├── i586 │ ├── i686 │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mipsel │ ├── powerpc │ ├── powerpc-440fp │ ├── sh2eb │ ├── sh2elf │ ├── sh4 │ ├── sparc │ └── x86_64 ├── toys │ ├── README.footer │ ├── ccwrap.c │ ├── dev-environment.sh │ ├── filter.py │ ├── gen_initramfs_list.sh │ ├── hdainit.sh │ ├── make-hdb.sh │ ├── native-build.sh │ ├── readelf.c │ ├── trximg.sh │ ├── unique-port.sh │ └── wrappy.c ├── utility_functions.sh └── variables.sh ├── system-image.sh └── www ├── FAQ.html ├── README ├── about.html ├── architectures.html ├── build-stages.html ├── documentation.html ├── downloads └── binaries │ └── README ├── footer.html ├── header.html ├── history.html ├── index.html ├── news.html ├── presentation.html └── screenshots ├── footer.html ├── header.html ├── index.html └── screenshots.sh /.hgignore: -------------------------------------------------------------------------------- 1 | ^build*/ 2 | ^packages/ 3 | -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/.hgtags -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | www/README -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/config -------------------------------------------------------------------------------- /cross-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/cross-compiler.sh -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/download.sh -------------------------------------------------------------------------------- /host-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/host-tools.sh -------------------------------------------------------------------------------- /more/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/README -------------------------------------------------------------------------------- /more/bisectinate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/bisectinate.sh -------------------------------------------------------------------------------- /more/buildall-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/buildall-native.sh -------------------------------------------------------------------------------- /more/buildall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/buildall.sh -------------------------------------------------------------------------------- /more/chroot-splice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/chroot-splice.sh -------------------------------------------------------------------------------- /more/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/clean.sh -------------------------------------------------------------------------------- /more/cronjob.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/cronjob.sh -------------------------------------------------------------------------------- /more/cross-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/cross-smoke-test.sh -------------------------------------------------------------------------------- /more/dev-environment-from-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/dev-environment-from-build.sh -------------------------------------------------------------------------------- /more/for-each-target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/for-each-target.sh -------------------------------------------------------------------------------- /more/migrate-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/migrate-kernel.sh -------------------------------------------------------------------------------- /more/miniconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/miniconfig.sh -------------------------------------------------------------------------------- /more/native-build-from-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/native-build-from-build.sh -------------------------------------------------------------------------------- /more/record-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/record-commands.sh -------------------------------------------------------------------------------- /more/repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/repo.sh -------------------------------------------------------------------------------- /more/report-recorded-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/report-recorded-commands.sh -------------------------------------------------------------------------------- /more/run-emulator-from-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/run-emulator-from-build.sh -------------------------------------------------------------------------------- /more/smoketest-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/smoketest-all.sh -------------------------------------------------------------------------------- /more/smoketest-report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/smoketest-report.sh -------------------------------------------------------------------------------- /more/smoketest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/smoketest.sh -------------------------------------------------------------------------------- /more/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/test.sh -------------------------------------------------------------------------------- /more/timeout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/timeout.sh -------------------------------------------------------------------------------- /more/tweak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/more/tweak.sh -------------------------------------------------------------------------------- /more/zapchroot.sh: -------------------------------------------------------------------------------- 1 | ../sources/root-filesystem/sbin/zapchroot -------------------------------------------------------------------------------- /native-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/native-compiler.sh -------------------------------------------------------------------------------- /root-filesystem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/root-filesystem.sh -------------------------------------------------------------------------------- /simple-cross-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/simple-cross-compiler.sh -------------------------------------------------------------------------------- /sources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/README -------------------------------------------------------------------------------- /sources/baseconfig-busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/baseconfig-busybox -------------------------------------------------------------------------------- /sources/baseconfig-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/baseconfig-linux -------------------------------------------------------------------------------- /sources/baseconfig-uClibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/baseconfig-uClibc -------------------------------------------------------------------------------- /sources/download_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/download_functions.sh -------------------------------------------------------------------------------- /sources/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/functions.sh -------------------------------------------------------------------------------- /sources/include.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/include.sh -------------------------------------------------------------------------------- /sources/patches/bash-fixfunc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/bash-fixfunc.patch -------------------------------------------------------------------------------- /sources/patches/bash-fixread.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/bash-fixread.patch -------------------------------------------------------------------------------- /sources/patches/bash-fixsize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/bash-fixsize.patch -------------------------------------------------------------------------------- /sources/patches/binutils-bfd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/binutils-bfd.patch -------------------------------------------------------------------------------- /sources/patches/binutils-mips.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/binutils-mips.patch -------------------------------------------------------------------------------- /sources/patches/binutils-screwinfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/binutils-screwinfo.patch -------------------------------------------------------------------------------- /sources/patches/binutils-shpcrel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/binutils-shpcrel.patch -------------------------------------------------------------------------------- /sources/patches/elf2flt-make.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/elf2flt-make.patch -------------------------------------------------------------------------------- /sources/patches/elf2flt-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/elf2flt-musl.patch -------------------------------------------------------------------------------- /sources/patches/elf2flt-stack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/elf2flt-stack.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-armeb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-armeb.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-fix-inhibit-libc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-fix-inhibit-libc.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-fix52.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-fix52.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-fixmips64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-fixmips64.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-libgcceh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-libgcceh.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-macrosity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-macrosity.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-musl.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-sh2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-sh2.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-shpic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-shpic.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-softfloat-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-softfloat-fix.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-stopdefaults.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-stopdefaults.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-stopdefaults2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-stopdefaults2.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-unbreak-armv4t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-unbreak-armv4t.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-weakbugs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-weakbugs.patch -------------------------------------------------------------------------------- /sources/patches/gcc-core-xgcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-core-xgcc.patch -------------------------------------------------------------------------------- /sources/patches/gcc-g++-is-stupid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/gcc-g++-is-stupid.patch -------------------------------------------------------------------------------- /sources/patches/linux-arm-qemuirq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-arm-qemuirq.patch -------------------------------------------------------------------------------- /sources/patches/linux-deeplystupid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-deeplystupid.patch -------------------------------------------------------------------------------- /sources/patches/linux-fixsh4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-fixsh4.patch -------------------------------------------------------------------------------- /sources/patches/linux-fixuClibc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-fixuClibc.patch -------------------------------------------------------------------------------- /sources/patches/linux-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-hack.patch -------------------------------------------------------------------------------- /sources/patches/linux-jcore.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-jcore.patch -------------------------------------------------------------------------------- /sources/patches/linux-noperl-timeconst.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-noperl-timeconst.patch -------------------------------------------------------------------------------- /sources/patches/linux-powerpc-altivec.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-powerpc-altivec.patch -------------------------------------------------------------------------------- /sources/patches/linux-powerpc-bamboo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-powerpc-bamboo.patch -------------------------------------------------------------------------------- /sources/patches/linux-sh4-fixifconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-sh4-fixifconfig.patch -------------------------------------------------------------------------------- /sources/patches/linux-shutup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/linux-shutup.patch -------------------------------------------------------------------------------- /sources/patches/musl-mips.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/musl-mips.patch -------------------------------------------------------------------------------- /sources/patches/musl-regex.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/musl-regex.patch -------------------------------------------------------------------------------- /sources/patches/toybox-grep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/toybox-grep.patch -------------------------------------------------------------------------------- /sources/patches/uClibc++-norelpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc++-norelpath.patch -------------------------------------------------------------------------------- /sources/patches/uClibc++-nozdefs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc++-nozdefs.patch -------------------------------------------------------------------------------- /sources/patches/uClibc++-unwind-cxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc++-unwind-cxx.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-fixlocalestruct.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-fixlocalestruct.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-fixm68k.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-fixm68k.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-headerdep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-headerdep.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-lddwithmusl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-lddwithmusl.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-mips-siginfo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-mips-siginfo.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-mkostemp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-mkostemp.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-mmu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-mmu.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-nofollow.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-nofollow.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-posix_spawn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-posix_spawn.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-pthread_once.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-pthread_once.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-ruserpass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-ruserpass.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-setns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-setns.c -------------------------------------------------------------------------------- /sources/patches/uClibc-setns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-setns.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-shutupldd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-shutupldd.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-sparcfix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-sparcfix.patch -------------------------------------------------------------------------------- /sources/patches/uClibc-strndup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/patches/uClibc-strndup.patch -------------------------------------------------------------------------------- /sources/root-filesystem/bin/getent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/bin/getent -------------------------------------------------------------------------------- /sources/root-filesystem/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/etc/group -------------------------------------------------------------------------------- /sources/root-filesystem/etc/mdev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/etc/mdev.conf -------------------------------------------------------------------------------- /sources/root-filesystem/etc/mtab: -------------------------------------------------------------------------------- 1 | /proc/mounts -------------------------------------------------------------------------------- /sources/root-filesystem/etc/os-release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/etc/os-release -------------------------------------------------------------------------------- /sources/root-filesystem/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/etc/passwd -------------------------------------------------------------------------------- /sources/root-filesystem/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | # This is the default for QEMU 2 | nameserver 10.0.2.3 3 | -------------------------------------------------------------------------------- /sources/root-filesystem/init: -------------------------------------------------------------------------------- 1 | sbin/init.sh -------------------------------------------------------------------------------- /sources/root-filesystem/sbin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/sbin/init.sh -------------------------------------------------------------------------------- /sources/root-filesystem/sbin/record-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/sbin/record-commands -------------------------------------------------------------------------------- /sources/root-filesystem/sbin/setup-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/sbin/setup-chroot -------------------------------------------------------------------------------- /sources/root-filesystem/sbin/zapchroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/sbin/zapchroot -------------------------------------------------------------------------------- /sources/root-filesystem/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/src/hello.c -------------------------------------------------------------------------------- /sources/root-filesystem/src/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/src/hello.cpp -------------------------------------------------------------------------------- /sources/root-filesystem/src/thread-hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/src/thread-hello.c -------------------------------------------------------------------------------- /sources/root-filesystem/src/thread-hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/root-filesystem/src/thread-hello2.c -------------------------------------------------------------------------------- /sources/sections/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/README -------------------------------------------------------------------------------- /sources/sections/bash.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/bash.build -------------------------------------------------------------------------------- /sources/sections/binutils.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/binutils.build -------------------------------------------------------------------------------- /sources/sections/busybox.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/busybox.build -------------------------------------------------------------------------------- /sources/sections/ccwrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/ccwrap.sh -------------------------------------------------------------------------------- /sources/sections/distcc.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/distcc.build -------------------------------------------------------------------------------- /sources/sections/elf2flt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/elf2flt.sh -------------------------------------------------------------------------------- /sources/sections/gcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/gcc.sh -------------------------------------------------------------------------------- /sources/sections/linux-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/linux-headers.sh -------------------------------------------------------------------------------- /sources/sections/make.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/make.build -------------------------------------------------------------------------------- /sources/sections/musl.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/musl.build -------------------------------------------------------------------------------- /sources/sections/toybox.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/toybox.build -------------------------------------------------------------------------------- /sources/sections/uClibc++.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/uClibc++.build -------------------------------------------------------------------------------- /sources/sections/uClibc.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/sections/uClibc.build -------------------------------------------------------------------------------- /sources/targets/armv4l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/armv4l -------------------------------------------------------------------------------- /sources/targets/armv4tl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/armv4tl -------------------------------------------------------------------------------- /sources/targets/armv5l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/armv5l -------------------------------------------------------------------------------- /sources/targets/armv6l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/armv6l -------------------------------------------------------------------------------- /sources/targets/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/i486 -------------------------------------------------------------------------------- /sources/targets/i586: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/i586 -------------------------------------------------------------------------------- /sources/targets/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/i686 -------------------------------------------------------------------------------- /sources/targets/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/m68k -------------------------------------------------------------------------------- /sources/targets/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/mips -------------------------------------------------------------------------------- /sources/targets/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/mips64 -------------------------------------------------------------------------------- /sources/targets/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/mipsel -------------------------------------------------------------------------------- /sources/targets/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/powerpc -------------------------------------------------------------------------------- /sources/targets/powerpc-440fp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/powerpc-440fp -------------------------------------------------------------------------------- /sources/targets/sh2eb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/sh2eb -------------------------------------------------------------------------------- /sources/targets/sh2elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/sh2elf -------------------------------------------------------------------------------- /sources/targets/sh4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/sh4 -------------------------------------------------------------------------------- /sources/targets/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/sparc -------------------------------------------------------------------------------- /sources/targets/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/targets/x86_64 -------------------------------------------------------------------------------- /sources/toys/README.footer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/README.footer -------------------------------------------------------------------------------- /sources/toys/ccwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/ccwrap.c -------------------------------------------------------------------------------- /sources/toys/dev-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/dev-environment.sh -------------------------------------------------------------------------------- /sources/toys/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/filter.py -------------------------------------------------------------------------------- /sources/toys/gen_initramfs_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/gen_initramfs_list.sh -------------------------------------------------------------------------------- /sources/toys/hdainit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/hdainit.sh -------------------------------------------------------------------------------- /sources/toys/make-hdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/make-hdb.sh -------------------------------------------------------------------------------- /sources/toys/native-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/native-build.sh -------------------------------------------------------------------------------- /sources/toys/readelf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/readelf.c -------------------------------------------------------------------------------- /sources/toys/trximg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/trximg.sh -------------------------------------------------------------------------------- /sources/toys/unique-port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/unique-port.sh -------------------------------------------------------------------------------- /sources/toys/wrappy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/toys/wrappy.c -------------------------------------------------------------------------------- /sources/utility_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/utility_functions.sh -------------------------------------------------------------------------------- /sources/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/sources/variables.sh -------------------------------------------------------------------------------- /system-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/system-image.sh -------------------------------------------------------------------------------- /www/FAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/FAQ.html -------------------------------------------------------------------------------- /www/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/README -------------------------------------------------------------------------------- /www/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/about.html -------------------------------------------------------------------------------- /www/architectures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/architectures.html -------------------------------------------------------------------------------- /www/build-stages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/build-stages.html -------------------------------------------------------------------------------- /www/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/documentation.html -------------------------------------------------------------------------------- /www/downloads/binaries/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/downloads/binaries/README -------------------------------------------------------------------------------- /www/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/footer.html -------------------------------------------------------------------------------- /www/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/header.html -------------------------------------------------------------------------------- /www/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/history.html -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- 1 | news.html -------------------------------------------------------------------------------- /www/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/news.html -------------------------------------------------------------------------------- /www/presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/presentation.html -------------------------------------------------------------------------------- /www/screenshots/footer.html: -------------------------------------------------------------------------------- 1 | ../footer.html -------------------------------------------------------------------------------- /www/screenshots/header.html: -------------------------------------------------------------------------------- 1 | ../header.html -------------------------------------------------------------------------------- /www/screenshots/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/screenshots/index.html -------------------------------------------------------------------------------- /www/screenshots/screenshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/landley/aboriginal/HEAD/www/screenshots/screenshots.sh --------------------------------------------------------------------------------