summaryrefslogtreecommitdiff
path: root/helpers
AgeCommit message (Collapse)AuthorFilesLines
2011-03-09Also allowing multiple preseeding files for netboot.Tiago Bortoletto Vaz1-1/+1
2011-03-09Adding guessing of the preseeding filename, and way to manually overwrite it ↵Daniel Baumann1-1/+11
(or select it in case of multiple available preseeding files).
2011-03-09Allowing to use more than one preseeding file to be on the media.Tiago Bortoletto Vaz1-2/+2
2011-03-09Ensure the binary image does not inherit the binary stage's APT settings.Chris Lamb2-4/+20
2011-03-09Always create stagefile for chroot_install-packages and require it for lh_sourceChris Lamb2-2/+5
This is required as lh_source will generate an incomplete source tarball if only the bootstrap phase has been completed.
2011-03-09Correct indentation of conditional code.Chris Lamb1-4/+4
2011-03-09Clean source.list instead of binary.list when calling lh_clean --source.Chris Lamb1-1/+1
2011-03-09Adding last modifications in order to have localization fully working in ↵Tiago Bortoletto Vaz12-16/+16
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-09Add busybox to DI_PACKAGES as its required to install kernels.Chris Lamb1-1/+1
2011-03-09Choose correct d-i install method for "live" and usb-hdd/tar image types.Chris Lamb1-3/+3
2011-03-09Don't duplicate .debs of packages in binary/pool that are installed via ↵Chris Lamb1-6/+49
live-installer. This saves about 80MiB of space when building LH_DEBIAN_INSTALLER="live".
2011-03-09Create pool/main to prevent build failure when no local .debs are queued for ↵Chris Lamb1-0/+1
installation.
2011-03-09Don't include the bootstrap .debs on live-installer based disks (saves ~30MiB).Chris Lamb1-12/+15
2011-03-09Rework WGET_OPTIONS and use "--no-verbose" by default (just prints the URL).Chris Lamb1-1/+6
2011-03-09Fix "lh_config -c". Thanks to Simon Schiele <lists@codingmonkey.de>.Chris Lamb1-2/+2
2011-03-09Remove --debian-installer-daily from getopt call.Chris Lamb1-1/+1
2011-03-09Fix a bug in chroot_local-packages where packages were upgraded with ↵Chris Lamb1-10/+23
themselves during lh_binary stages.
2011-03-09Fix bug in LH_DEBIAN_INSTALLER_DISTRIBUTION = "daily" handling.Chris Lamb1-0/+2
Was causing build failures as it was trying to download files from a "daily" component of a mirror.
2011-03-09Disabling call to "update-initramfs" in lh_chroot_hacks.Chris Lamb1-3/+0
Users who are modifying initramfs scripts via chroot_local-includes should really run update-initramfs themselves - this wasn't possible until fairly recently due to re-ordering of calls from lh_chroot.
2011-03-09Merging debian-installer-daily option into debian-installer-distribution.Daniel Baumann2-12/+2
2011-03-09Minor typo fix for encryption parameter in lh_config help message.Tiago Bortoletto Vaz1-1/+1
2011-03-09Suporting debian-installer distribution choice, which makes possible to ↵Tiago Bortoletto Vaz2-24/+34
build a image using a system-independent debian-installer suite. The config option for this is --debian-installer-distribution CODENAME.
2011-03-09Adding missing debian-installer options in lh_config --help message.Tiago Bortoletto Vaz1-1/+1
2011-03-09Replacing file checking with ls by function callsAntonio Terceiro13-39/+39
Instead of repeatedly doing "ls ... > /dev/null 2>&1", just use a function that does exactly that.
2011-03-09Always add our apt_preference(5) pinning stanza when using local-packages.Chris Lamb2-15/+12
This mostly reverts my most recent chroot_local-packages/preferences commit as I found problems when re-running parts of the build: as the pinning stanza was removed, calls to "apt-get upgrade" from within live-helper would remove replacement packages placed in chroot_local-packages. This isn't 100% foolproof - running apt-get upgrade on the binary image may still attempt to remove replacement packages (heavy users of this should probably be using their own repo for this sort of thing anyway).
2011-03-09Ensure packages in config/chroot_local-packages override all others.Chris Lamb2-3/+17
This reverts config/chroot_local-packages to almost original semantics by giving any package in chroot_local-packages a priority of 1001, allowing it to "downgrade" packages and generally override the standard APT sources. I think this follows the idea of this directory more and is likely to be more useful with this setup - rebuilding a package simply to bump a version number or keeping a custom apt_preferences(5) file around kinda sucks, especially as it is often used as a temporary workaround.
2011-03-09Test whether to use hard-links when caching d-i downloads.Chris Lamb1-1/+6
2011-03-09Don't install Recommends of d-i packages.Chris Lamb1-1/+1
2011-03-09Call "Check_defaults" in lh_build.Chris Lamb1-0/+7
This ensures that incompatible configurations that are created by editing files in config/ are detected when building the image via lh_build. This also has the side-effect of ensuring that configuration warnings (if any) appear for live-magic.
2011-03-09Print nicer error message when bootstrap missing from LH_CACHE_STAGES.Chris Lamb1-0/+3
2011-03-09Remove 'E:' prefix in call to Echo_error - it gets added later too.Chris Lamb1-1/+1
2011-03-09Only using hardlinks for local-packages when hardlinks are possible.Daniel Baumann1-2/+7
2011-03-09Removing make-live legacy helper.Daniel Baumann1-15/+0
2011-03-09Making check for local-patches silent.Daniel Baumann1-1/+1
2011-03-09Making check for local-includes silent.Daniel Baumann2-2/+2
2011-03-09Improving message when using default values in /etc/default/live-helper.Tiago Bortoletto Vaz1-1/+1
2011-03-09Add lh_chroot_local-patches helper to apply local patches against chroot.Chris Lamb3-0/+72
2011-03-09Fix cache poisoning issue in lh_binary_debian-installer with 404 downloadsChris Lamb1-1/+7
When wget 404's, an target file is created - this poisons the cache as the file is apparently downloaded but in actuality is simply empty. We fix this by unconditionally deleting the cache file if wget fails and emitting an error.
2011-03-09Don't attempt to use live-installer on Etch; it would simply result in no ↵Chris Lamb1-1/+1
bootstrap method.
2011-03-09Cache d-i kernel, initrd and mini.iso downloads (Closes: #492085)Chris Lamb1-1/+13
2011-03-09Wrap most calls to wget in lh_binary_debian-installer.Chris Lamb1-8/+18
2011-03-09Using rfc2606 invalid tld instead of dummy.Daniel Baumann1-1/+1
2011-03-09Using better suited variable name for live-helpers local key.Daniel Baumann1-5/+5
2011-03-09Additionally clean md5sum.txt temporary file.Chris Lamb1-1/+1
2011-03-09Remove pointless whitespace.Chris Lamb1-1/+1
2011-03-09Temporarily replace /dev/urandom with /dev/random when creating local ↵Chris Lamb1-0/+9
packages key. This avoids blocking automated mage builds; we don't care about the security of this key anyway.
2011-03-09Correct d-i kernel and initrd locations in grub entries. Thanks to Jun ↵Chris Lamb1-4/+4
NOGATA <nogajun@gmail.com> for the patch. (Closes: #490245)
2011-03-09Fix a bug where a /etc/apt/preferences supplied in chroot_local-includes was ↵Chris Lamb1-1/+1
always being deleted when used in conjunction with config/chroot_apt/preferences.
2011-03-09Abort build if working directory contains spaces - not supported by (at ↵Chris Lamb1-0/+6
least) debootstrap and cdebootstrap.
2011-03-09Replace spaces in LH_BOOTSTRAP_{IN,EX}CLUDE variables with commas on use. ↵Chris Lamb2-4/+4
Thanks to Cyril Brulebois <cyril.brulebois@kerlabs.com>. (Closes: #490114)