summaryrefslogtreecommitdiff
path: root/target/initramfs
AgeCommit message (Collapse)Author
2009-04-07Makefile: add target-finalize for common filesystem cleanupPeter Korsgaard
And remove from each rootfs variant.
2009-04-01fakeroot: install into HOST_DIRPeter Korsgaard
2009-04-01makedevs: install into HOST_DIRPeter Korsgaard
2009-01-01buildroot: set SHELL instead of messing around with CONFIG_SHELLPeter Korsgaard
Simply set SHELL to bash instead of adding CONFIG_SHELL to all shell invocations. CONFIG_SHELL is still set, as it is used by kconfig.
2008-12-08target/initramfs: actually build initramfs targetPeter Korsgaard
Currently, BR2_TARGET_ROOTFS_INITRAMFS doesn't actually do anything, as it doesn't alter $(TARGETS) This change hooks up the TARGETS variable to INITRAMFS_TARGET (which is only set if BR2_TARGET_ROOTFS_INITRAMFS=y), so that the initramfs list is built. Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
2008-12-08target/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-08-04buildroot: remove trailing spacesPeter Korsgaard
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2007-10-01- just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
2007-08-25- workaround for broken external toolchainsBernhard Reutner-Fischer
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-08-22- semicolon touchup. No other changesBernhard Reutner-Fischer
2007-08-21- start to use BR2_HAVE_MANPAGES and BR2_HAVE_INFOPAGESBernhard Reutner-Fischer
- always error out if ldconfig for the target fails (was inconsistent..)
2007-08-16Move fakeroot temps from STAGING_DIR to PROJECT_BUILD_DIRUlf Samuelsson
2007-07-18Fix INITRAMFS target that was broken. Get rid of config stuff out of the ↵"Steven J. Hill"
top-level directory. Finally fix Linux kernel module building such that modules are built and installed first followed by rest of packages. This allows for packages to build external Linux kernel modules.
2007-07-08- provide option to build an initramfs out of the current rootfs. Closes #881Bernhard Reutner-Fischer