summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_syslinux
AgeCommit message (Collapse)AuthorFilesLines
2011-03-09Copy menu binary from the correct directoryAn-Cheng Huang1-2/+9
2011-03-09Renaming internal Read_conffile(); to Read_conffiles(); for consistency reasons.Daniel Baumann1-1/+1
2011-03-09Enforcing lh_config to be run before lh_build, see also ↵Daniel Baumann1-1/+1
http://lists.debian.org/debian-live/2008/10/msg00102.html (Closes: #500740).
2011-03-09Only install memtest in lh_binary_syslinux if enabled.Maximilian Gass1-1/+5
2011-03-09Standardise on appending " (fail-safe mode)" for all bootloaders.Chris Lamb1-1/+1
2011-03-09Adding last modifications in order to have localization fully working in ↵Tiago Bortoletto Vaz1-1/+1
live-helper. This commit goes with some pt_BR translations just for testing. Thanks to Antonio Terceiro for helping and coding in some shell stuff.
2011-03-09Consolidate grep text searching predicates to use "grep -qs"Chris Lamb1-1/+1
If this is deemed not portable enough in the future, it should be easy enough to find/replace.
2011-03-09Remove more imported whitespaces.Chris Lamb1-5/+5
2011-03-09Replace a few unweildy "if" statements with their "case" equivalentsChris Lamb1-19/+23
2011-03-09Fix a number of issues with Syslinux templates (Closes: #476204)Chris Lamb1-1/+0
This fixes: * The ugly "toboot" and "to\nboot" problems * Mistitled F4 page * Ugly line-breaking of Debian Live URL
2011-03-09Using new Read_conffile(); now.Daniel Baumann1-7/+1
2011-03-09Adding 'all' configuration file.Daniel Baumann1-0/+1
2011-03-09Allow LH_ENCRYPTION="disabled" to disable encryptionChris Lamb1-4/+7
2011-03-09Fixing wrong debian-installer auto target configuration.Daniel Baumann1-1/+1
2011-03-09Re-adding quiet on all d-i install targets in post-etch, except expert (and ↵Daniel Baumann1-3/+3
keeping Chris fixed quiet handling).
2011-03-09Don't append 'quiet' kernel parameter in rescue modesChris Lamb1-5/+5
2011-03-09Ensure syslinux entry names match templates and standard d-i namesChris Lamb1-1/+10
This patch alters the syslinux labels to follow the "expert" and "expertgui" style in favour of "TextExpert" and "GUIExpert". This makes the names match Live Helper's syslinux templates, as well as the more typical d-i installations and numerious sources that claim that one should "just type 'expert' at the syslinux prompt", etc.
2011-03-09Updating copyright years to 2008.Daniel Baumann1-1/+1
2011-03-09Fixing typo in sed call to set isolinux splash file.Daniel Baumann1-1/+1
2011-03-09Consistently using the pipe as seperator in sed commands now.Daniel Baumann1-19/+19
2011-03-09Fixing some coding style issues.Daniel Baumann1-126/+145
2011-03-09Fixing some coding style issues.Daniel Baumann1-3/+3
2011-03-09Renaming live-failsafe boot target to livefailsafe (Closes: #450576).Daniel Baumann1-1/+1
2011-03-09fix isolinux when booting multiple kernel flavoursJesse Hathaway1-7/+8
2011-03-09fix syslinux timeout optionJesse Hathaway1-1/+1
change MILISECONDS to SECONDS. Syslinux actually uses tenths of seconds not milliseconds, but it seems unnecessary to expose this to the user. Fix templates to only specify the timeout once.
2011-03-09Fixing indenting.Daniel Baumann1-6/+8
2011-03-09add new option to mount cow device on nfs volumeJesse Hathaway1-5/+22
At the moment this only works with the root volume on nfs as well. If we add a switch to configure the network early in the boot process then this option could be made available for other root mediums. This option works reliably on the latest kernel 2.6.23.1 On earlier kernels I experienced frequent oopses.
2011-03-09Remove ".img" from kernel image file name.Maarten ter Huurne1-2/+3
When an ISO is created with the kernel image file name ending in ".img", the ISO will not boot. In Qemu, the following error will be shown: FATAL: Int13 eltorito call with AX=4C00 This means a non-implemented BIOS entry was called. In VMware and on real hardware there is a different error message: Cannot load disk image (invalid file)? Removing the ".img" part of the file name solves this.
2011-03-09add exposedroot option which exposes the root fs as roJesse Hathaway1-0/+5
This option allows you to expose the root read only. Using this option a person could upgrade the root filesystem or add packages without requiring the user to reboot. The root filesystem could be kept on an nfs volume or some other persistent medium. Multiple clients could then be booted off the same root fs. I used LTSP as a template to determine which directories to make rw.
2011-03-09lh_binary_syslinux: always put splash image as splash.{rle,png} to avoid ↵Otavio Salvador1-21/+20
filename issues
2011-03-09lh_binary_syslinux: check for ${INITFS} and not ${LH_INITRAMFS} to detect ↵Otavio Salvador1-4/+4
wrong path
2011-03-09lh_binary_syslinux: fix usb-hdd etch imagesJesse Hathaway1-17/+41
I did not realize that the syslinux boot methods, iso, net, & hdd do not have feature parity for any given version. As per old comments etch syslinux v3.31 does not support sub directories on FAT images
2011-03-09readd support for booting etch via syslinuxJesse Hathaway1-4/+26
2011-03-09Unify syslinux code, so that pxelinux isolinux & usb-hddJesse Hathaway1-405/+209
share more code. Change pxelinux directory setup to match debian installer Change syslinux templates to use {$VAR} syntax so the templates are easier to read Remove etch support for syslinux, since INCLUDE syntax is not available in etch syslinux v3.31
2011-03-09Adding check to fail if a cross build is started (Closes: #444669, #444670).Daniel Baumann1-0/+1
2011-03-09syslinux: fix usb-hdd templates copingOtavio Salvador1-0/+6
2011-03-09syslinux: properly change timeout and do not fail if help files do not existsOtavio Salvador1-8/+13
2011-03-09syslinux: fix usb-hdd entries to use menu.cfg fileOtavio Salvador1-6/+6
2011-03-09syslinux: force latin1 encoding on texts used for labelsOtavio Salvador1-1/+9
syslinux cannot handle utf-8 encoding and then proper encoding needed to be enforced while printing the label texts.
2011-03-09syslinux: fix module detection otherwise it won't be copiedOtavio Salvador1-1/+1
2011-03-09syslinux: fix memcheck path since it was using the wrong pathOtavio Salvador1-1/+1
2011-03-09syslinux: split syslinux configuration in multiple filesOtavio Salvador1-9/+11
Normal and menu templates share a lot of common stuff and then a splited syslinux.cfg is much better to handle that.
2011-03-09syslinux: always output MENU LABEL since they're ignored if menu.c32 isn't ↵Otavio Salvador1-8/+2
loaded syslinux ignores MENU LABEL commands if there's no menu.c32 module loaded and then we don't need about check it.
2011-03-09templates: move syslinux-menu to syslinux/menuOtavio Salvador1-6/+7
All files from syslinux-menu templates directory has been moved to syslinux/menu. lh_binary_syslinux had some changes to work with that but they were minimal ones.
2011-03-09syslinux: fix menu label usage for normal live bootOtavio Salvador1-1/+1
2011-03-09syslinux: defaults to english text if we lack the specified languageOtavio Salvador1-1/+6
2011-03-09refactoring: simplified if/else case since the list of supported arch were ↵Otavio Salvador1-9/+12
too long
2011-03-09Replacing backticks with POSIX expression.Daniel Baumann1-36/+36
2011-03-09implements syslinux vesa menu supportOtavio Salvador1-28/+82
2011-03-09Fixing typing error in lh_binary_syslinux, thanks to Jean Pierre LeJacq ↵Daniel Baumann1-1/+1
<jp.lejacq@quoininc.com> (Closes: #443099).