Commit a2d5729d authored by Seblu's avatar Seblu
Browse files

Use vmlinuz as kernel prefix

This allow refind to detect it automaticaly
parent a485132e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -107,7 +107,7 @@ package() {
  depmod -b "$pkgdir/usr" -- "$compver"

  # install kernel and map
  install -D -m644 arch/x86/boot/bzImage "$pkgdir/boot/kernel-$compver"
  install -D -m644 arch/x86/boot/bzImage "$pkgdir/boot/vmlinuz-$compver"

  # install mkinitcpio preset file for kernel
  install -d "$pkgdir/etc/mkinitcpio.d/"
@@ -115,7 +115,7 @@ package() {
# mkinitcpio preset file for $pkgname

ALL_config="/etc/mkinitcpio.conf"
ALL_kver="/boot/kernel-$compver"
ALL_kver="/boot/vmlinuz-$compver"

PRESETS=('default' 'fallback')