diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-12 17:11:56 -0600 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2018-02-12 17:11:56 -0600 |
commit | 1377839255595ae4d2b493ad0c7d42e5e6afcb64 (patch) | |
tree | c84dd4e6f28bef0f0e2f62fcb4fba32a078cead9 /system/syslinux/update-extlinux.conf | |
parent | 9d5276776fc3b29adaeeac90bea30d057dc2a3f6 (diff) | |
download | packages-1377839255595ae4d2b493ad0c7d42e5e6afcb64.tar.gz packages-1377839255595ae4d2b493ad0c7d42e5e6afcb64.tar.bz2 packages-1377839255595ae4d2b493ad0c7d42e5e6afcb64.tar.xz packages-1377839255595ae4d2b493ad0c7d42e5e6afcb64.zip |
system/syslinux: bring over from aports fork
Diffstat (limited to 'system/syslinux/update-extlinux.conf')
-rw-r--r-- | system/syslinux/update-extlinux.conf | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/system/syslinux/update-extlinux.conf b/system/syslinux/update-extlinux.conf new file mode 100644 index 000000000..39598cb99 --- /dev/null +++ b/system/syslinux/update-extlinux.conf @@ -0,0 +1,75 @@ +# configuration for extlinux config builder + +# overwrite +# Overwrite current /boot/extlinux.conf. If this is not '1' we will only +# write to /boot/extlinux.conf.new +overwrite=1 + +# vesa_menu +# use fancy vesa menu (vesamenu.c32) menus, won't work with serial +vesa_menu=1 + +# default_kernel_opts +# default kernel options +default_kernel_opts=ro + +# modules +# modules which should be loaded before pivot_root +modules= +#sd-mod,usb-storage,ext3 + +# root +# root device - if not specified, will be guessed using +# blkid -o export /dev/root +root= + +# verbose +# if set to non-zero, update-extlinux will be a lot more verbose. +verbose=0 + +# hidden +# if set to non-zero, the boot menu will be hidden by default. +hidden=0 + +# timeout +# number of seconds to wait before booting default +timeout=5 + +# default +# default kernel to boot +default=vanilla + +# serial_port +# serial port number - if not specified, serial console will be disabled +serial_port= + +# serial_baud +# the baudrate for the serial port. Will use 115200 if unset +serial_baud=115200 + +# xen_opts +# options to hand to xen hypervisor, useful ones are: +# dom0_mem=256M (give domain-0 environment 256M ram) +xen_opts=dom0_mem=256M + +# if you copy /usr/share/syslinux/reboot.c32 to /boot/, a menu entry +# will be auto-generated for it + +# if you copy hdt.c32, libgpl.c32, and libmenu.c32 from /usr/share/syslinux/ +# to /boot/, a menu entry will be auto-generated for HDT + +# if you download and install /boot/memtest, then if HDT is present it +# will use it, else a separate menu entry will be auto-generated for +# memtest + +# optional password +# you can generate a SHA512 password using: mkpasswd +# +# if you assign a password, you should make this file world-unreadable +# +# if a password is assigned, the menu entries can't be edited at boot +# time, and HDT if present is password-protected +# +# you can also include "MENU PASSWD" in any custom entries you have in +# /etc/update-extlinux.d/ +password='' |