summary refs log tree commit diff
path: root/nixos/modules/installer/cd-dvd
diff options
context:
space:
mode:
authorBob van der Linden <bobvanderlinden@gmail.com>2014-11-16 20:13:49 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-03-24 22:09:06 +0100
commit9ff9949896c7ff0307ea60dc8d25de340860bfc4 (patch)
tree37fc0bfe9deb05a2b429617a5773a260888088e5 /nixos/modules/installer/cd-dvd
parentaf68f2400365d830131acf5fb0f3e2c8cbad65a7 (diff)
downloadnixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar.gz
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar.bz2
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar.lz
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar.xz
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.tar.zst
nixlib-9ff9949896c7ff0307ea60dc8d25de340860bfc4.zip
nixos: iso-image: removed com32 entries from syslinux menu
These entries result in incorrect entries when UNetbootin writes
the image to an USB disk.
Diffstat (limited to 'nixos/modules/installer/cd-dvd')
-rw-r--r--nixos/modules/installer/cd-dvd/iso-image.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix
index 2b125fa8bc15..c41d22ffd0d8 100644
--- a/nixos/modules/installer/cd-dvd/iso-image.nix
+++ b/nixos/modules/installer/cd-dvd/iso-image.nix
@@ -44,19 +44,6 @@ let
     LINUX /boot/bzImage
     APPEND init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams}
     INITRD /boot/initrd
-
-    LABEL chain
-    MENU LABEL Boot existing OS
-    COM32 chain.c32
-    APPEND hd0 0
-
-    LABEL reboot
-    MENU LABEL Reboot
-    COM32 reboot.c32
-
-    LABEL poweroff
-    MENU LABEL Power Off
-    COM32 poweroff.c32
     '';
 
   isolinuxCfg = baseIsolinuxCfg + (optionalString config.boot.loader.grub.memtest86.enable isolinuxMemtest86Entry);