summaryrefslogtreecommitdiff
path: root/target/linux/Makefile.in
AgeCommit message (Collapse)Author
2009-02-25linux: always apply platform patches if availablePeter Korsgaard
Get rid of BR2_KERNEL_HEADERS_PATCH_DIR config, and simply always apply platform patches if available.
2009-02-25kernel-headers: remove 2.6.20-22 variants and outdated impi/lzma patchesPeter Korsgaard
2009-02-06Simplify kernel naming scheme. Only use kernel name plus the rootfs suffix ↵Thiago A. Corrêa
if one is provided
2009-01-16buildroot: convert remaining WGET users to DOWNLOAD helperPeter Korsgaard
2009-01-12toolchain: fix cris build with 2.6.28 kernel headersPeter Korsgaard
Patch by Hinko Kocevar <hinko.kocevar@cetrtapot.si>
2008-12-07taget/linux: handle non-modular kernelsPeter Korsgaard
Based on b151271 in Bernhard's tree.
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-09linux: add knob to force a rebuild of the kernelPeter Korsgaard
Makes development easier. Thanks to Brian Beattie for this handy idea. 1df013316b in Bernhards tree.
2008-03-29Feeding the kernel zero optimization -O0 breaks the kernel build at least on ↵Nigel Kukard
x86 with asm errors, remove -O0 when building the kernel
2008-03-21kernel 2.6.24 creates a symlink to bzImage, which is copied inplace, symlink ↵John Voltz
and all, this gives an incorrect symlink deref in binaries/uclibc/ and points to ../../x86/bzImage. Do not copy symlink in place, follow it. Patch by Nigel Kukard.
2007-12-17Add support for GNU and kernel.org mirrorsIvan Kuten
2007-09-29- revert part of 20119 (renaming BR2_ARM_.ABI to BR2_.ABI)Bernhard Reutner-Fischer
2007-09-29- add mips/mipsel target architecture selectionBernhard Reutner-Fischer
- rename BR2_ARM_[EO]ABI to the commonly used BR2_[EO]ABI
2007-09-28Cleanup cross toolchain admin, split uclibc-menuconfig into same + ↵Ulf Samuelsson
uclibc-update to avoid overwriting board support file
2007-09-28Add administration for linux,uclibc and mainUlf Samuelsson
2007-09-26Allow easy update of target linux configUlf Samuelsson
2007-09-26Add more management to linux and buysbox packagesUlf Samuelsson
2007-09-23Use correct path to vmlinux, Fix bad SED of configUlf Samuelsson
2007-09-22- put LZMA into generic flagsBernhard Reutner-Fischer
- some additional cleanups while at it
2007-09-18- patch the correct dirBernhard Reutner-Fischer
2007-09-12Unbreak multiple boards, add Ingo's rt patchUlf Samuelsson
2007-09-05Add unpacking + patching of linux source tree to simplify creating a new patchUlf Samuelsson
2007-09-04- remove initramfs related config settings and configure them back if neededBernhard Reutner-Fischer
2007-09-02- build and use the list of the small initramfsBernhard Reutner-Fischer
Overriding the use of the whole system (as does the initramfs target) is done on purpose.
2007-08-24This patch allows each project to have a private linux build.Ulf Samuelsson
Split build of kernel headers and kernel image into two source trees. Kernel headers are built in $(TOOL_BUILD_DIR) Kernel build is in $(PROJECT_BUILD_DIR) Make sure that kernel patches are applied to the kernel tree in $(PROJECT_BUILD_DIR) Add board specific patches, if available.
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-08-22- random whitespace cleanupBernhard Reutner-Fischer
2007-08-22- improve the way host prerequisites for "dependencies" are establishedBernhard Reutner-Fischer
2007-08-21- add handling of lzma for the host (unconditionally for now)Bernhard Reutner-Fischer
- remove non-working attempt to install an lzma to the host via sudo
2007-08-21- propagate IPv6 setting down to the kernelBernhard Reutner-Fischer
2007-08-19Fix bad parameter list for patching linux kernelUlf Samuelsson
2007-08-16Ensure lzma is built *before* linux, allow system installation in /usr/local/binUlf Samuelsson
2007-08-01Allow user configurable kernel nameUlf Samuelsson
2007-07-23- revert a part that was introduced with the PROJECT changes.Bernhard Reutner-Fischer
fixes unability to build a kernel (failed to find rule .patched)
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-17Add 'linux26-modules' target to allow external drivers to be built with the ↵"Steven J. Hill"
kernel. Also, remove 'boot' directory before creating INITRAMFS.
2007-07-17A number of fixes including placing of the final image into the 'binaries' ↵"Steven J. Hill"
directory. Moved INITRAMFS_TARGET to the correct location as modules from the built kernel were not being installed until after the INITRAMFS had been built. Fixed config options for INITRAMFS to be correct and cleaned up whitespace/tab issues.
2007-07-12 BSP Patch:Ulf Samuelsson
========================================================= The purpose of the BSP patch is to allow building several boards inside the same buildroot tree. For this to work, each board has to have its own "$(TARGET_DIR)" and all *configurable* packages must be rebuilt for each board. They are now built in the "$(PROJECT_BUILD_DIR)" All non configurable packages can and should still be built in the "$(BUILD_DIR)". If a package is built for one board, then when you build for a second board of the same architecture the build becomes a simple copy of the resulting binaries. ----- Define BR2_PROJECT which will be used as the selector between different boards. Note that BR2_PROJECT allow you to build multiple root file systems for a single board, and should not be confused with BR2_BOARD_NAME which relates to the H/W. ----- Define PROJECT_BUILD_DIR as "PROJECT_BUILD_DIR/$(PROJECT)" Define BINARIES_DIR as "binaries/$(PROJECT)" Define TARGET_DIR as "$(PROJECT_BUILD_DIR)/root" (some prefix/postfix may apply) Resulting images are stored in "$(BINARIES_DIR)" ----- Define a few new environment variables in Makefile PROJECT: Stripped BR2_PROJECT DATE: Date of build in YYYY-MM-DD format HOSTNAME: Stripped BR2_HOSTNAME => /etc/hostname BANNER: Stripped BR2_BANNER => /etc/issue Linux and Busybox will be built in $(PROJECT_BUILD_DIR) More patches will be needed later to ensure all configurable packages are built in this directory.
2007-07-11Build linux within target/linux/Makefile.in instead of within target/linux26.mkUlf Samuelsson