diff options
author | Dubiousjim <dubiousjim@gmail.com> | 2013-06-29 16:41:23 -0400 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-06-30 11:18:05 +0000 |
commit | 64e8c06cb5a27278c4c7a99dc64b4456baa77d20 (patch) | |
tree | 1d8364760edff750853219b44e84402b06784232 /main/syslinux | |
parent | ed12e5de37accd7d2d3c548f2160f34d1e97a44c (diff) | |
download | aports-64e8c06cb5a27278c4c7a99dc64b4456baa77d20.tar.bz2 aports-64e8c06cb5a27278c4c7a99dc64b4456baa77d20.tar.xz |
main/syslinux: use more specific LINUX (instead of KERNEL) for kernels
Diffstat (limited to 'main/syslinux')
-rwxr-xr-x | main/syslinux/update-extlinux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/syslinux/update-extlinux b/main/syslinux/update-extlinux index e46eadfa62..014df1bbe9 100755 --- a/main/syslinux/update-extlinux +++ b/main/syslinux/update-extlinux @@ -124,7 +124,7 @@ for kernel in $(find /boot -name "vmlinuz-*" -type f); do echo " MENU DEFAULT" >> $conf.new fi echo " MENU LABEL Linux $tag" >> $conf.new - echo " KERNEL $(basename $kernel)" >> $conf.new + echo " LINUX $(basename $kernel)" >> $conf.new if [ -f "/boot/initramfs-$tag" ]; then everbose "Found initramfs: /boot/initramfs-$tag" echo " INITRD initramfs-$tag" >> $conf.new |