summaryrefslogtreecommitdiff
path: root/functions
AgeCommit message (Collapse)AuthorFilesLines
2011-03-09Adding cursor functions for future usage.Daniel Baumann1-0/+51
2011-03-09Adding color functions for future usage.Daniel Baumann1-0/+39
2011-03-09Don't install more than one kernel image when building minimal or stripped ↵Daniel Baumann1-2/+18
images.
2011-03-09Adding support for squeeze (lenny+1).Daniel Baumann1-0/+1
2011-03-09Improve architecture auto-detection.Chris Lamb1-2/+12
2011-03-09Setting project email address to the new debian-live@lists.debian.org.Daniel Baumann1-1/+1
2011-03-09Renaming sections to categories in order to use the same names as Debian ↵Daniel Baumann1-3/+3
Policy does (Closes: #483777).
2011-03-09Using internal prefix for PACKAGES variable in function/packages.sh (Closes: ↵Daniel Baumann1-7/+7
#468900).
2011-03-09Install loop-aes-utils if we are using encryption.Chris Lamb1-0/+4
2011-03-09Correct logic in LH_BOOTAPPEND_INSTALL handlingChris Lamb1-4/+7
(LH_BOOTAPPEND_INSTALL was being overridden if a preseed.cfg was found.)
2011-03-09Don't use interpolation to print usage and help as it breaks newlines and tabs.Chris Lamb2-3/+3
2011-03-09Correcting win32-loader default values.Daniel Baumann1-2/+2
2011-03-09Making help.sh and version.sh messages translatable.Tiago Bortoletto Vaz2-27/+24
2011-03-09Making usage.sh messages translatable.Tiago Bortoletto Vaz1-8/+7
2011-03-09Moving win32-loader inclusion support from external hook into main program ↵Daniel Baumann1-0/+11
(Closes: #476546).
2011-03-09Adding generic echo function.Daniel Baumann1-0/+8
2011-03-09Removing superfluous echo type from echo call.Daniel Baumann1-1/+1
2011-03-09Correcting escaping of $VERSION in LH_ISO_PREPARER defaults.Daniel Baumann1-1/+1
2011-03-09Correcting aesthetic typo "proces" -> "process".Chris Lamb1-1/+1
2011-03-09Add leading space to prevent unnecessary diff when running lh_config repeatedly.Chris Lamb1-1/+1
2011-03-09Rename internal LH_BOOTAPPEND_PRESEED variable to _LH_BOOTAPPEND_PRESEEDChris Lamb1-6/+6
2011-03-09Replacing remaining echo calls with proper echo functions.Daniel Baumann1-5/+5
2011-03-09Don't expand version in default configuration, but rather use it dynamically.Daniel Baumann1-1/+1
2011-03-09Supporting remote preseeding files.Tiago Bortoletto Vaz1-1/+9
2011-03-09Also allowing multiple preseeding files for netboot.Tiago Bortoletto Vaz1-3/+7
2011-03-09Adding guessing of the preseeding filename, and way to manually overwrite it ↵Daniel Baumann1-7/+39
(or select it in case of multiple available preseeding files).
2011-03-09Adding last modifications in order to have localization fully working in ↵Tiago Bortoletto Vaz14-25/+31
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-09Adding the basic infrastructure to provide l10n support for live-helper.Tiago Bortoletto Vaz1-0/+17
2011-03-09Merging debian-installer-daily option into debian-installer-distribution.Daniel Baumann1-3/+0
2011-03-09Suporting debian-installer distribution choice, which makes possible to ↵Tiago Bortoletto Vaz1-0/+3
build a image using a system-independent debian-installer suite. The config option for this is --debian-installer-distribution CODENAME.
2011-03-09Bumping version number to 1.0.0.Daniel Baumann1-1/+1
2011-03-09Sorting functions alphabetically.Antonio Terceiro1-8/+8
2011-03-09Replacing file checking with ls by function callsAntonio Terceiro1-0/+5
Instead of repeatedly doing "ls ... > /dev/null 2>&1", just use a function that does exactly that.
2011-03-09Print a warning when package caching is disabled but d-i integration is enabled.Chris Lamb1-0/+11
2011-03-09Updating debian release information.Daniel Baumann1-2/+2
2011-03-09Releasing debian version 1.0~a48-1.Daniel Baumann1-1/+1
2011-03-09Perform in LH_BOOTAPPEND_INSTALL conditional expansion manually to avoid ↵Chris Lamb1-1/+4
expansion bug/feature on repetitive calls to lh_config (Closes: #488672)
2011-03-09Print a friendlier message if debootstrap or cdebootstrap cannot be found.Chris Lamb1-1/+2
2011-03-09Migrate a In_list candidate to grep -E.Chris Lamb1-1/+1
Perhaps we could .-include the In_list function?
2011-03-09Add In_list function to extract various bits of code that did (or should ↵Chris Lamb1-0/+19
have done) the same job.
2011-03-09Add support for usb-hdd on sparc (requires parted 1.8 from experimental).Chris Lamb1-1/+8
2011-03-09Add support for the sparc architecture.Chris Lamb1-0/+4
2011-03-09Fix truncated Echo_breakage messages.Chris Lamb1-1/+1
2011-03-09Add Echo_breakage for messages preceeding often-breaking stages and use ↵Chris Lamb1-0/+16
before {c,}debootstrap calls
2011-03-09Releasing live-helper 1.0~a47-1.Daniel Baumann1-1/+1
2011-03-09Allow needle and haystack parts of packagelist #if constructs to be listsChris Lamb1-8/+14
This allows us to write: #if SECTIONS contrib non-free contrib-package non-free-package #endif and #if DISTRIBUTION lenny sid new-package #endif
2011-03-09Releasing live-helper 1.0~a46-1.Daniel Baumann1-1/+1
2011-03-09Support list of items for conditionals in package listsTiago Bortoletto Vaz1-2/+3
This patch allows giving a list of items for the conditionals in package lists. For example, it's possible to specify some packages for more than one architecture in the same conditional block: package01 #if ARCHITECTURE i386 amd64 package02 package03 #endif package04 where package01 and package04 are available for all architectures, but package02 and package03 are available only for i386 and amd64 architectures.
2011-03-09Support simple conditionals in package listsChris Lamb1-10/+50
This patch adds support for simple conditionals in package lists. For example, to limit a package to i386 only: foo #if ARCHITECTURE i386 package-only-in-i386 #endif bar Any variable that beings in LH_ can be expanded: #if MODE ubuntu package-only-in-ubuntu #endif Nesting of conditionals is not supported. If the variable to be expanded does not exist, the conditional is false.
2011-03-09Use APT::Install-Recommends to disable installation of recommends for EtchChris Lamb1-1/+1