diff options
-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 e46eadfa6..014df1bbe 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 |