dec-multia: make netboot possible, add aboot bootloader
commit3a96085b999220c4da0c5ef7d1f7ba26b9ddfb98
authorWaldemar Brodkorb <wbx@openadk.org>
Sun, 31 Dec 2017 17:47:16 +0000 (31 18:47 +0100)
committerWaldemar Brodkorb <wbx@openadk.org>
Sun, 31 Dec 2017 17:47:25 +0000 (31 18:47 +0100)
tree77f1445aae2e6be5135594e95986b3278bbc061c
parentcc28479164b8dc8afd4310716da32f16022f5974
dec-multia: make netboot possible, add aboot bootloader
115 files changed:
mk/kernel-build.mk
package/aboot/Makefile [new file with mode: 0644]
package/aboot/src/COPYING [new file with mode: 0644]
package/aboot/src/ChangeLog [new file with mode: 0644]
package/aboot/src/ChangeLog.cvs [new file with mode: 0644]
package/aboot/src/INSTALL [new file with mode: 0644]
package/aboot/src/Makefile [new file with mode: 0644]
package/aboot/src/README [new file with mode: 0644]
package/aboot/src/TODO [new file with mode: 0644]
package/aboot/src/aboot.c [new file with mode: 0644]
package/aboot/src/aboot.conf [new file with mode: 0644]
package/aboot/src/aboot.lds [new file with mode: 0644]
package/aboot/src/b2c.c [new file with mode: 0644]
package/aboot/src/cons.c [new file with mode: 0644]
package/aboot/src/disk.c [new file with mode: 0644]
package/aboot/src/doc/faq/.cvsignore [new file with mode: 0644]
package/aboot/src/doc/faq/Makefile [new file with mode: 0644]
package/aboot/src/doc/faq/SRM-HOWTO.sgml [new file with mode: 0644]
package/aboot/src/doc/man/Makefile [new file with mode: 0644]
package/aboot/src/doc/man/README [new file with mode: 0644]
package/aboot/src/doc/man/aboot.8 [new file with mode: 0644]
package/aboot/src/doc/man/aboot.conf.5 [new file with mode: 0644]
package/aboot/src/doc/man/aboot.conf.sgml [new file with mode: 0644]
package/aboot/src/doc/man/aboot.sgml [new file with mode: 0644]
package/aboot/src/doc/man/abootconf.8 [new file with mode: 0644]
package/aboot/src/doc/man/abootconf.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/Makefile [new file with mode: 0644]
package/aboot/src/doc/man/de/aboot.conf.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/aboot.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/abootconf.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/docbook2man-de-spec.pl [new file with mode: 0644]
package/aboot/src/doc/man/de/e2writeboot.8 [new file with mode: 0644]
package/aboot/src/doc/man/de/isomarkboot.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/netabootwrap.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/sdisklabel.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/srmbootfat.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/srmbootraw.sgml [new file with mode: 0644]
package/aboot/src/doc/man/de/swriteboot.8 [new file with mode: 0644]
package/aboot/src/doc/man/e2writeboot.8 [new file with mode: 0644]
package/aboot/src/doc/man/isomarkboot.8 [new file with mode: 0644]
package/aboot/src/doc/man/isomarkboot.sgml [new file with mode: 0644]
package/aboot/src/doc/man/netabootwrap.sgml [new file with mode: 0644]
package/aboot/src/doc/man/sdisklabel.8 [new file with mode: 0644]
package/aboot/src/doc/man/sdisklabel.copyright [new file with mode: 0644]
package/aboot/src/doc/man/sdisklabel.sgml [new file with mode: 0644]
package/aboot/src/doc/man/swriteboot.8 [new file with mode: 0644]
package/aboot/src/fs/dummy.c [new file with mode: 0644]
package/aboot/src/fs/ext2.c [new file with mode: 0644]
package/aboot/src/fs/iso.c [new file with mode: 0644]
package/aboot/src/fs/ufs.c [new file with mode: 0644]
package/aboot/src/head.S [new file with mode: 0644]
package/aboot/src/include/aboot.h [new file with mode: 0644]
package/aboot/src/include/bootfs.h [new file with mode: 0644]
package/aboot/src/include/config.h [new file with mode: 0644]
package/aboot/src/include/cons.h [new file with mode: 0644]
package/aboot/src/include/disklabel.h [new file with mode: 0644]
package/aboot/src/include/hwrpb.h [new file with mode: 0644]
package/aboot/src/include/iso.h [new file with mode: 0644]
package/aboot/src/include/isolib.h [new file with mode: 0644]
package/aboot/src/include/linux/ext2_fs.h [new file with mode: 0644]
package/aboot/src/include/pal.h [new file with mode: 0644]
package/aboot/src/include/setjmp.h [new file with mode: 0644]
package/aboot/src/include/string.h [new file with mode: 0644]
package/aboot/src/include/system.h [new file with mode: 0644]
package/aboot/src/include/ufs.h [new file with mode: 0644]
package/aboot/src/include/utils.h [new file with mode: 0644]
package/aboot/src/lib/Makefile [new file with mode: 0644]
package/aboot/src/lib/_longjmp.S [new file with mode: 0644]
package/aboot/src/lib/_setjmp.S [new file with mode: 0644]
package/aboot/src/lib/divide.S [new file with mode: 0644]
package/aboot/src/lib/isolib.c [new file with mode: 0644]
package/aboot/src/lib/memcpy.c [new file with mode: 0644]
package/aboot/src/lib/memset.c [new file with mode: 0644]
package/aboot/src/lib/string.c [new file with mode: 0644]
package/aboot/src/lib/vsprintf.c [new file with mode: 0644]
package/aboot/src/net.c [new file with mode: 0644]
package/aboot/src/netabootwrap.c [new file with mode: 0644]
package/aboot/src/netwrap.h [new file with mode: 0644]
package/aboot/src/sdisklabel/.cvsignore [new file with mode: 0644]
package/aboot/src/sdisklabel/Makefile [new file with mode: 0644]
package/aboot/src/sdisklabel/README [new file with mode: 0644]
package/aboot/src/sdisklabel/library.c [new file with mode: 0644]
package/aboot/src/sdisklabel/library.h [new file with mode: 0644]
package/aboot/src/sdisklabel/sdisklabel.c [new file with mode: 0644]
package/aboot/src/sdisklabel/swriteboot.c [new file with mode: 0644]
package/aboot/src/srmbootfat/COPYING [new file with mode: 0644]
package/aboot/src/srmbootfat/Makefile [new file with mode: 0644]
package/aboot/src/srmbootfat/README [new file with mode: 0644]
package/aboot/src/srmbootfat/msdos.h [new file with mode: 0644]
package/aboot/src/srmbootfat/srmbootfat.c [new file with mode: 0644]
package/aboot/src/srmbootfat/srmbootfat.sgml [new file with mode: 0644]
package/aboot/src/srmbootfat/srmbootraw.c [new file with mode: 0644]
package/aboot/src/srmbootfat/srmbootraw.sgml [new file with mode: 0644]
package/aboot/src/tools/.cvsignore [new file with mode: 0644]
package/aboot/src/tools/Makefile [new file with mode: 0644]
package/aboot/src/tools/abootconf.c [new file with mode: 0644]
package/aboot/src/tools/bio.c [new file with mode: 0644]
package/aboot/src/tools/bio.h [new file with mode: 0644]
package/aboot/src/tools/e2lib.c [new file with mode: 0644]
package/aboot/src/tools/e2lib.h [new file with mode: 0644]
package/aboot/src/tools/e2writeboot.c [new file with mode: 0644]
package/aboot/src/tools/elfencap.c [new file with mode: 0644]
package/aboot/src/tools/isomarkboot.c [new file with mode: 0644]
package/aboot/src/tools/objstrip.c [new file with mode: 0644]
package/aboot/src/utils.c [new file with mode: 0644]
package/aboot/src/zip/gzip.h [new file with mode: 0644]
package/aboot/src/zip/inflate.c [new file with mode: 0644]
package/aboot/src/zip/misc.c [new file with mode: 0644]
package/aboot/src/zip/unzip.c [new file with mode: 0644]
target/alpha/Makefile
target/alpha/systems/dec-multia
target/config/Config.in.kernelfmt
target/config/Config.in.rootfs
target/linux/config/Config.in.serial
target/linux/patches/4.9.71/alpha-remove-coff.patch [new file with mode: 0644]