checking in before test build and tag

This commit is contained in:
2015-08-24 01:50:30 -04:00
parent cbde8105c1
commit bd11e3e9ec
11 changed files with 499 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
post_install() {
# This text is taken from Makefile
cat <<EOF
> To create a bootable floppy, type
> cat bin/ipxe.dsk > /dev/fd0
> where /dev/fd0 is your floppy drive. This will erase any
> data already on the disk.
>
> To create a bootable USB key, type
> cat bin/ipxe.usb > /dev/sdX
> where /dev/sdX is your USB key, and is *not* a real hard
> disk on your system. This will erase any data already on
> the USB key.
>
> To create a bootable CD-ROM, burn the ISO image
> bin/ipxe.iso to a blank CD-ROM.
>
> These images contain drivers for all supported cards. You
> can build more customised images, and ROM images, using
> make bin/<rom-name>.<output-format>
EOF
if [ -x /usr/sbin/grub-mkconfig ] && [ -s /boot/grub/grub.cfg ]; then
echo " >"
echo " > You should run grub-mkconfig now."
fi
}