summaryrefslogtreecommitdiff
path: root/share/bootloaders/pxelinux/install_gui.cfg
diff options
context:
space:
mode:
authorjnqnfe <jnqnfe@gmail.com>2015-02-03 18:52:30 +0000
committerLyndon Brown <jnqnfe@gmail.com>2020-04-24 18:50:37 +0100
commit24c2b3e119ef1b22539736ddaae1f42818c09f02 (patch)
tree7119c3343128f5cb8be537ec0fa663ccb3a70777 /share/bootloaders/pxelinux/install_gui.cfg
parent34a72caf494b2b4b98248ce4d54e0654dc822890 (diff)
downloadvyos-live-build-24c2b3e119ef1b22539736ddaae1f42818c09f02.tar.gz
vyos-live-build-24c2b3e119ef1b22539736ddaae1f42818c09f02.zip
syslinux: deduplicate common files
there are several files of which identical duplicate copies are held in: - share/bootloaders/extlinux - share/bootloaders/pxelinux - share/bootloaders/isolinux - share/bootloaders/syslinux it is a pain to maintain this from a development standpoint, having to copy modified config files into the other directories each time changes are made and mistakes have been made before due to this. this creates a new folder share/bootloaders/syslinux_common and moves them to this new directory. it also expands the binary_syslinux stage to use it, with it now constructing the installed set of bootloader files as follows: 1. copy {LB_DIR}/bootloaders/syslinux_common 2. copy {LB_DIR}/bootloaders/{syslinux|isolinux|extlinux|pxelinux} on top 3. copy config/bootloaders/syslinux_common on top 4. copy config/bootloaders/{syslinux|isolinux|extlinux|pxelinux} on top note, to explain part of the binary_syslinux change, instead of just copying the correct bootloader folder full of the files, we now make the target bootloader specific directory, then copy the contents of source directories into it. Gbp-Dch: Short
Diffstat (limited to 'share/bootloaders/pxelinux/install_gui.cfg')
-rw-r--r--share/bootloaders/pxelinux/install_gui.cfg68
1 files changed, 0 insertions, 68 deletions
diff --git a/share/bootloaders/pxelinux/install_gui.cfg b/share/bootloaders/pxelinux/install_gui.cfg
deleted file mode 100644
index 20f43aff9..000000000
--- a/share/bootloaders/pxelinux/install_gui.cfg
+++ /dev/null
@@ -1,68 +0,0 @@
-label installgui
- menu label Start ^installer
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append vga=788 @APPEND_INSTALL@ --- quiet
-
-menu begin install
- menu label ^Advanced install options
- menu title Advanced install options
- include stdmenu.cfg
- label mainmenu
- menu label ^Back..
- menu exit
-
- label installgui
- menu label ^Graphical install
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append vga=788 @APPEND_INSTALL@ --- quiet
-
- label expertgui
- menu label Graphical e^xpert install
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append priority=low vga=788 @APPEND_INSTALL@
-
- label rescuegui
- menu label Graphical ^rescue mode
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
-
- label autogui
- menu label Graphical ^automated install
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
-
- label install
- menu label ^Install
- linux @KERNEL_DI@
- initrd @INITRD_DI@
- append vga=788 @APPEND_INSTALL@ --- quiet
-
- label expert
- menu label Expert install
- linux @KERNEL_DI@
- initrd @INITRD_DI@
- append priority=low vga=788 @APPEND_INSTALL@
-
- label rescue
- menu label Rescue mode
- linux @KERNEL_DI@
- initrd @INITRD_DI@
- append rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
-
- label auto
- menu label Automated install
- linux @KERNEL_DI@
- initrd @INITRD_DI@
- append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
-
- label installspeechsynth
- menu label Graphical install with ^speech synthesis
- linux @KERNEL_GI@
- initrd @INITRD_GI@
- append speakup.synth=soft vga=788 @APPEND_INSTALL@ --- quiet
-menu end