added custom bootloader

This commit is contained in:
sose 2020-06-17 11:58:40 -07:00
parent 3c3a2b8d05
commit a1c5c52aff
15 changed files with 73 additions and 1 deletions

2
binary
View File

@ -22,7 +22,7 @@ LB_BOOTAPPEND_LIVE_FAILSAFE="boot=live components memtest noapic noapm nodma nom
# $LB_BOOTLOADERS: set bootloaders
# (Default: syslinux,grub-efi)
LB_BOOTLOADERS="syslinux,grub-efi"
LB_BOOTLOADERS="syslinux"
# $LB_CHECKSUMS: set checksums
# (Default: md5)

View File

@ -0,0 +1,7 @@
label hdt
menu label ^Hardware Detection Tool (HDT)
com32 hdt.c32
label memtest
menu label ^Memory Diagnostic Tool (memtest86+)
linux /live/memtest

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/hdt.c32

View File

@ -0,0 +1,11 @@
label install
menu label ^Install
linux /install/vmlinuz
initrd /install/initrd.gz
append vga=788 @APPEND_INSTALL@ --- quiet
label installgui
menu label ^Graphical install
linux /install/gtk/vmlinuz
initrd /install/gtk/initrd.gz
append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/ldlinux.c32

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/libcom32.c32

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/libgpl.c32

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/libmenu.c32

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/libutil.c32

View File

@ -0,0 +1,12 @@
label live-@FLAVOUR@
menu label ^Live (@FLAVOUR@)
menu default
linux @LINUX@
initrd @INITRD@
append @APPEND_LIVE@
label live-@FLAVOUR@-failsafe
menu label ^Live (@FLAVOUR@ failsafe)
linux @LINUX@
initrd @INITRD@
append @APPEND_LIVE_FAILSAFE@

View File

@ -0,0 +1,16 @@
menu hshift 0
menu width 82
menu title Boot menu
include stdmenu.cfg
include live.cfg
menu begin advanced
menu title ^Advanced options
include stdmenu.cfg
label mainmenu
menu label ^Back..
menu exit
include advanced.cfg
menu end
menu clear

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,15 @@
menu background splash.png
menu color title * #FFFFFFFF *
menu color border * #00000000 #00000000 none
menu color sel * #ffffffff #2bb04e *
menu color hotsel 1;7;37;40 #ffffffff #2bb04e *
menu color tabmsg * #ffffffff #00000000 *
menu color help 37;40 #ffd7d768 #00000000 none
menu vshift 12
menu rows 10
menu helpmsgrow 15
# The command line must be at least one line from the bottom.
menu cmdlinerow 16
menu timeoutrow 16
menu tabmsgrow 18
menu tabmsg Press ENTER to boot or TAB to edit a menu entry

View File

@ -0,0 +1,4 @@
include menu.cfg
default vesamenu.c32
prompt 0
timeout 0

View File

@ -0,0 +1 @@
/usr/lib/syslinux/modules/bios/vesamenu.c32