diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-31 18:47:16 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-12-31 18:47:25 +0100 |
commit | 3a96085b999220c4da0c5ef7d1f7ba26b9ddfb98 (patch) | |
tree | 77f1445aae2e6be5135594e95986b3278bbc061c /package/aboot/src/INSTALL | |
parent | cc28479164b8dc8afd4310716da32f16022f5974 (diff) |
dec-multia: make netboot possible, add aboot bootloader
Diffstat (limited to 'package/aboot/src/INSTALL')
-rw-r--r-- | package/aboot/src/INSTALL | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/aboot/src/INSTALL b/package/aboot/src/INSTALL new file mode 100644 index 000000000..107940de2 --- /dev/null +++ b/package/aboot/src/INSTALL @@ -0,0 +1,28 @@ +Thu Jun 27 03:23:08 1996 + +- Edit Makefile and include/config.h to suite your needs. For most + purposes, the distributed version should work fine. Note that + the CONFIG_FILE_PARTITION macro is still present like in earlier + version, but since aboot-0.5 allows you to select a partition via + the boot-commandline, the value for that macro is not as critical + anymore. Users of certain versions of gcc (2.96 and later?) + may need to add '-ffreestanding' flag to CFLAGS, in the Makefile. + +- Type "make". + +- To install the newly created aboot image (named "bootlx"), in most cases, + you use swriteboot (found in the sdisklabel directory), like this: + + # swriteboot -c[boot partition #] [boot device] bootlx + + for example, on my system, the kernel images (and aboot.conf) are on my + root partition, /dev/sda2. hence: + + # swriteboot -c2 /dev/sda bootlx + + DON'T DO THIS UNLESS YOU'RE SURE OF THE PARTITION INFO. If you don't know + exactly what you're doing, and your system already boots okay, there's no + reason to be installing a new bootloader. + + For more info, read the SRM HOWTO, in doc/faq/srm.html, or at: + http://www.alphalinux.org/faq/srm.html |