summaryrefslogtreecommitdiffstats
path: root/target
Commit message (Collapse)AuthorAgeFilesLines
* rename TOOL_BUILD_DIR to TOOLCHAIN_DIRMichael Roth2009-09-237-7/+7
| | | | | | | | To reflect the new output directory hierachy rename the Makefile variable TOOL_BUILD_DIR to TOOLCHAIN_DIR. Signed-off-by: Michael Roth <mroth@nessie.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target: update default /etc/issue and /etc/hostnamePeter Korsgaard2009-09-198-12/+8
| | | | | | | | | Adjust default /etc/issue to print 'Welcome to Buildroot' like the recently removed BR2_BANNER did, and adjust default hostname to be 'buildroot' instead of uclibc as we now support external glibc toolchains as well. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove the "project" featureThomas Petazzoni2009-09-1618-129/+124
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "project" feature was designed to allow to several projects to be built inside the same Buildroot source tree and allowing the toolchain and non-configurable packages to be shared between the different projects on the same architecture. While being interesting in theory, this feature adds a level of complexity to Buildroot, both from an user perspective and from a developer perspective, while one of the main Buildroot strengh is to be simple. Moreover, this feature is only seldomly used by our users. From a user-level perspective, this for example allows to remove the project_build_ARCH directory, which was very confusing. The autotools-stamps directory is also removed, since these stamps are back at their normal location. Description of the changes involved : * project/, directory removed * Makefile - Don't include project/Makefile.in and project/project.mk anymore - Grab a copy of the contents of project/Makefile.in at the location it was imported, but remove the definition related to PROJECT_BUILD_DIR. The TARGET_DIR is now in $(BUILD_DIR)/target_dir - Remove the creation/removal of the $(PROJECT_BUILD_DIR) and $(PROJECT_BUILD_DIR)/autotools-stamps directories - Don't make world depends on target-host-info. This target was defined by project/project.mk to customize /etc/issue, /etc/hostname and create /etc/br-version depending on the project definitions. We can of course imagine re-adding such a feature later. - Replace PROJECT_BUILD_DIR by BUILD_DIR everywhere - Remove the update, log and lognr.$(PROJECT) target, they were specific to the project feature. * package/Makefile.autotools.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache - Move the INSTALL_TARGET and HOOK_POST_INSTALL stamps to the same directory as the other stamps (i.e, in the package directory). * package/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache * package/at/at.mk, package/busybox/busybox.mk, package/busybox/initramfs.mk, package/customize/customize.mk, package/linux-fusion/linux-fusion.mk, package/ltp-testsuite/ltp-testsuite.mk, package/nfs-utils/nfs-utils.mk, target/cpio/cpioroot.mk, target/cramfs/cramfs.mk, target/device/Atmel/DataFlashBoot/DataflashBoot.mk, target/device/Atmel/Makefile.in, target/device/Atmel/at91bootstrap/at91bootstrap.mk, target/device/KwikByte/Makefile.in, target/ext2/ext2root.mk, target/initramfs/initramfs.mk, target/iso9660/iso9660.mk, target/jffs2/jffs2root.mk, target/linux/Makefile.in, target/romfs/romfs.mk, target/squashfs/squashfsroot.mk, target/tar/tarroot.mk, target/ubifs/ubifsroot.mk - Replace PROJECT_BUILD_DIR by BUILD_DIR * target/device/Config.in - Do not include project/Config.in anymore * target/linux/Makefile.in.advanced - Replace PROJECT_BUILD_DIR by BUILD_DIR - Store the stamps file in $(STAMP_DIR) instead of $(PROJECT_BUILD_DIR)/autotools-stamps * target/u-boot/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR - Remove $(PROJECT) from the U-Boot target binary name - Remove the insertion in the configuration of the project name as the hostname - The u-boot-autoscript target now generates $(U_BOOT_AUTOSCRIPT).img instead of $(U_BOOT_AUTOSCRIPT).$(PROJECT) * toolchain/gcc/gcc-uclibc-3.x.mk toolchain/gcc/gcc-uclibc-4.x.mk - Move the stamps files to $(STAMP_DIR) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* target/device/Atmel: get rid of unused filesPeter Korsgaard2009-09-152-880/+0
| | | | | | No references to these anywhere in the tree. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* squashfs: fix for mksquashfs 4.0 race conditionPeter Korsgaard2009-09-142-1/+42
| | | | | | | | | | Fix for the race condition in mksquashfs recently seen. Patch by Phillip Lougher. See http://thread.gmane.org/gmane.comp.file-systems.squashfs.devel/76 for details. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target: use qstripThomas Petazzoni2009-09-0521-155/+81
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* target/device/AMD: removePeter Korsgaard2009-09-0155-2636/+0
| | | | | | | It hasn't been touched in years, and Config.in refers to non-existing files (linux.mk), so there cannot be many users. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: remove ancient 1.3.4 versionPeter Korsgaard2009-09-011-5/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: add 2009.08Peter Korsgaard2009-09-011-2/+7
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: mark old 2008.10 version as deprecatedPeter Korsgaard2009-08-271-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* buildroot: fix fallout after qtopia4 -> qt renamePeter Korsgaard2009-08-0325-123/+123
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device: rename program invocation symbol in defconfigsPeter Korsgaard2009-07-3116-16/+16
| | | | | | The symbol is now BR2_PROGRAM_INVOCATION, not BR2_UCLIBC_PROGRAM_INVOCATION. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix PROGRAM_INVOCATION handling with external toolchainsThomas Petazzoni2009-07-311-2/+2
| | | | | | | | | | | | | BR2_UCLIBC_PROGRAM_INVOCATION is a toolchain configuration option, like BR2_INET_IPV6, BR2_INET_RPC, on which some packages depend. Therefore, it should be handled like BR2_INET_IPV6 and BR2_INET_RPC in order to work properly with external toolchains. Since we move it out of toolchain/uClibc/Config.in into toolchain/Config.in.2, we rename the option to BR2_PROGRAM_INVOCATION (since BR2_INET_RPC and others don't have UCLIBC in their name). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* target/iso9660: fix mkisofs build for !i686Peter Korsgaard2009-07-271-1/+1
| | | | | | | Use HOST_ARCH instead of hardcoded i686. The build still could use some cleanup though. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/iso9660: needs a linux kernelPeter Korsgaard2009-07-271-0/+4
| | | | | | Closes #403. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device/xtensa: only override makedevs target for xtensa buildsPeter Korsgaard2009-07-261-0/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/Makefile.in: remove hurd referencePeter Korsgaard2009-07-261-2/+0
| | | | | | Missed by b6192fb9752a. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add support for custom post-build scriptDaniel Mack2009-07-251-0/+15
| | | | | | | | | | | | | | | | | | | The config help text says it all: Specify a script to be run after the build has finished and before the BR2 starts packing the files into selected packages. This gives users the oportunity to do board-specific cleanups, add-ons and the like, so the generated files can be used directly without further processing. The script is called with the target directory name as first and only argument. Make sure the exit code of that script is 0, otherwise make will stop after calling it. Signed-off-by: Daniel Mack <daniel@caiaq.de> Cc: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device/KwikByte: remove unused 2.6.20 configPeter Korsgaard2009-07-251-1218/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/: remove hurd kernel placeholderPeter Korsgaard2009-07-253-56/+0
| | | | | | | Incomplete and unlikely to get completed in the near future - Pretty much like hurd itself. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/Config.in: remove reference to target/linux/Config.in.experimentalPeter Korsgaard2009-07-251-1/+0
| | | | | | File doesn't exist any more. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-advanced: remove unused ancient kernel versionsPeter Korsgaard2009-07-252-44/+0
| | | | | | More than 2 years old, and no in tree users. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'master' of git://git.buildroot.net/~ulf/git/linuxPeter Korsgaard2009-07-253-355/+27
|\
| * Update kernel "latest" major/minor version numbersUlf Samuelsson2009-07-242-10/+27
| | | | | | | | including adding support for 2.6.30/2.6.31-rc#
| * Remove unused file: "target/linux/Config.in.experimental"Ulf Samuelsson2009-07-241-345/+0
| |
* | [XTENSA] Remove Copyright notes. They contradict GPL license.Maxim Grigoriev2009-07-251-7/+1
|/ | | | | Signed-off-by: Maxim Grigoriev <maxim@tensilica.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/; xtensa supportMaxim Grigoriev2009-07-2415-0/+1283
| | | | | | | Part of #163. Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux26: do not set CFLAGS_KERNEL to TARGET_CFLAGSSven Neumann2009-07-222-5/+1
| | | | | | | | | | | | Using TARGET_CFLAGS breaks the kernel build for the arm platform. The result is a kernel that can not be booted. So simply do not fiddle with the CFLAGS on a kernel build and the kernel build system will do the right thing (TM). [Peter: do the same thing for the standard kernel build] Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: add 2009.06 releasePeter Korsgaard2009-06-291-2/+7
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: target tools: use library files from their original locationPeter Korsgaard2009-06-291-4/+7
| | | | | | | | | u-boot 2009.06 changed the tools/ logic, and no longer adds symbolic links to the needed library files in the tools directory. Fix build by referencing the library files in their original location. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/generic: add /dev/sd{a,b}*, /dev/ub{a,b}* device nodesPeter Korsgaard2009-06-211-4/+10
| | | | | | E.G. for usb disks. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/generic: add /dev/i2c-N device nodesPeter Korsgaard2009-06-211-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/Config.in.arch: fix BR2_ARCH for i386 geode variantPwalters2009-06-151-0/+1
| | | | | Signed-off-by: PWalters <pwalters21@cox.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add support for Freescale's MXC serial terminalsDaniel Mack2009-06-103-0/+16
| | | | | | | | | | This patch makes ttymxc[012] an option to choose for BR2_TARGET_GENERIC_GETTY. It also adds these ports to the generic device table and to securetty. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/generic: add ttySACx support to serial console configPeter Korsgaard2009-06-074-0/+25
| | | | | | | Add ttySACx (samsung s3c SoC) support to the generic serial console config. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/Config.in.arch: fix BR2_GCC_TARGET_ARCH for arm926tAlex Dobrynin2009-06-011-1/+1
| | | | | | | | | | | | | | Closes #367. arm926t was wrongly listed as armv4t, and not armv5te - leading to the following error while compiling the kernel (2.6.28): CC arch/arm/kernel/traps.o {standard input}: Assembler messages: {standard input}:1094: Error: selected processor does not support `pld [r6,#0]' Signed-off-by: Alex Dobrynin <alex_dobrynin@hotmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-advanced: bump 2.6.29.x kernel versionSvein-Erik Skjelbred2009-05-282-3/+3
| | | | | Signed-off-by: Svein-Erik Skjelbred <at91rm9200@skjelbred.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/ubifsroot: mark as brokenPeter Korsgaard2009-05-281-0/+1
| | | | | | | | It should get fixed to use mkfs.ubifs from mtd-utils, but that's probably unrealistic before the 2009.05 release, so mark as broken for now. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/ubifsroot: fix source rulePeter Korsgaard2009-05-281-2/+2
| | | | | | | Notice that the upstream git tree is no more, so this doesn't buy us much. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device/Atmel: remove atngw100-expanded configPeter Korsgaard2009-05-1962-10769/+0
| | | | | | Doesn't make much sense without working xserver. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove unused kernel configsThiago A. Correa2009-05-152-2323/+0
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update kernel config for atngw100_defconfigThiago A. Correa2009-05-152-10/+1367
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove unused busybox configThiago A. Correa2009-05-151-767/+0
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update default linux config for x86Thiago A. Correa2009-05-151-0/+2157
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update i386_defconfigThiago A. Correa2009-05-151-67/+72
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove unused busybox.configThiago A. Correa2009-05-151-719/+0
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update i686_defconfigThiago A. Correa2009-05-151-17/+25
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update atngw100-base_defconfigThiago A. Correa2009-05-151-152/+398
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update atngw100-extended_defconfigThiago A. Correa2009-05-151-433/+201
| | | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update atngw100_defconfig to kernel 2.6.29.2Thiago A. Correa2009-05-081-14/+12
| | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com>