diff options
author | Dubiousjim <dubiousjim@gmail.com> | 2013-06-29 16:41:25 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-06-30 11:19:51 +0000 |
commit | faf4eed0066294cad5e0b71f5a9315f42abd9a33 (patch) | |
tree | f97591a0d2df0b61684eb1ad2d31baf60b88d103 /main/syslinux | |
parent | 589d7d3981b9de2534cb5b4f9c6567425319341e (diff) | |
download | aports-faf4eed0066294cad5e0b71f5a9315f42abd9a33.tar.bz2 aports-faf4eed0066294cad5e0b71f5a9315f42abd9a33.tar.xz |
main/syslinux: add reboot entry
We don't install /boot/reboot.c32, but if it's present (it can be copied from
/usr/share/syslinux/reboot.c32), we add a menu entry for it---just like
with memtest.
Add a comment to /etc/update-extlinux.conf stating this.
It'd already be possible to get a reboot entry using the
/etc/update-extlinux.d/ folder, but this patch provides a more intelligent
framework with nicer layout.
The syslinux sourceball also provides a shutdown module, but I couldn't get this to
work and looking at the sources reveals it to be for machines with APM enabled.
Not sure how many machines that applies to anymore.
Diffstat (limited to 'main/syslinux')
-rwxr-xr-x | main/syslinux/update-extlinux | 7 | ||||
-rw-r--r-- | main/syslinux/update-extlinux.conf | 4 |
2 files changed, 11 insertions, 0 deletions
diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux index 0dc360170..1c5fc5c45 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -151,6 +151,13 @@ if [ -f "/boot/memtest" ]; then echo "" >> $conf.new fi +if [ -f "/boot/reboot.c32" ]; then + everbose "Found reboot" + echo "LABEL reboot" >> $conf.new + echo " MENU LABEL Reboot" >> $conf.new + echo " COM32 reboot.c32" >> $conf.new + echo "" >> $conf.new +fi if [ "$overwrite" != "1" ]; then diff --git a/main/syslinux/update-extlinux.conf b/main/syslinux/update-extlinux.conf index 59f9e60c4..5a36a1f1c 100644 --- a/main/syslinux/update-extlinux.conf +++ b/main/syslinux/update-extlinux.conf @@ -42,3 +42,7 @@ default=grsec # options to hand to xen hypervisor, useful ones are: # dom0_mem=256M (give domain-0 environment 256M ram) xen_opts=dom0_mem=256M + +# if you copy /usr/share/syslinux/reboot.c32 to /boot/, a menu entry will be auto-generated for it + +# a menu entry will also be auto-generated for /boot/memtest, if you download it and install it |