summaryrefslogtreecommitdiff
path: root/target
AgeCommit message (Collapse)Author
2009-07-31target/device: rename program invocation symbol in defconfigsPeter Korsgaard
The symbol is now BR2_PROGRAM_INVOCATION, not BR2_UCLIBC_PROGRAM_INVOCATION. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-31Fix PROGRAM_INVOCATION handling with external toolchainsThomas Petazzoni
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>
2009-07-27target/iso9660: fix mkisofs build for !i686Peter Korsgaard
Use HOST_ARCH instead of hardcoded i686. The build still could use some cleanup though. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-27target/iso9660: needs a linux kernelPeter Korsgaard
Closes #403. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-26target/device/xtensa: only override makedevs target for xtensa buildsPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-26target/Makefile.in: remove hurd referencePeter Korsgaard
Missed by b6192fb9752a. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25Add support for custom post-build scriptDaniel Mack
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>
2009-07-25target/device/KwikByte: remove unused 2.6.20 configPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25target/: remove hurd kernel placeholderPeter Korsgaard
Incomplete and unlikely to get completed in the near future - Pretty much like hurd itself. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25target/Config.in: remove reference to target/linux/Config.in.experimentalPeter Korsgaard
File doesn't exist any more. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25linux-advanced: remove unused ancient kernel versionsPeter Korsgaard
More than 2 years old, and no in tree users. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-25Merge branch 'master' of git://git.buildroot.net/~ulf/git/linuxPeter Korsgaard
2009-07-25[XTENSA] Remove Copyright notes. They contradict GPL license.Maxim Grigoriev
Signed-off-by: Maxim Grigoriev <maxim@tensilica.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-24Update kernel "latest" major/minor version numbersUlf Samuelsson
including adding support for 2.6.30/2.6.31-rc#
2009-07-24Remove unused file: "target/linux/Config.in.experimental"Ulf Samuelsson
2009-07-24target/; xtensa supportMaxim Grigoriev
Part of #163. Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-07-22linux26: do not set CFLAGS_KERNEL to TARGET_CFLAGSSven Neumann
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>
2009-06-29u-boot: add 2009.06 releasePeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-06-29u-boot: target tools: use library files from their original locationPeter Korsgaard
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>
2009-06-21target/generic: add /dev/sd{a,b}*, /dev/ub{a,b}* device nodesPeter Korsgaard
E.G. for usb disks. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-06-21target/generic: add /dev/i2c-N device nodesPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-06-15target/Config.in.arch: fix BR2_ARCH for i386 geode variantPwalters
Signed-off-by: PWalters <pwalters21@cox.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-06-10Add support for Freescale's MXC serial terminalsDaniel Mack
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>
2009-06-07target/generic: add ttySACx support to serial console configPeter Korsgaard
Add ttySACx (samsung s3c SoC) support to the generic serial console config. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-06-01target/Config.in.arch: fix BR2_GCC_TARGET_ARCH for arm926tAlex Dobrynin
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>
2009-05-28linux-advanced: bump 2.6.29.x kernel versionSvein-Erik Skjelbred
Signed-off-by: Svein-Erik Skjelbred <at91rm9200@skjelbred.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-28target/ubifsroot: mark as brokenPeter Korsgaard
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>
2009-05-28target/ubifsroot: fix source rulePeter Korsgaard
Notice that the upstream git tree is no more, so this doesn't buy us much. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-19target/device/Atmel: remove atngw100-expanded configPeter Korsgaard
Doesn't make much sense without working xserver. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Remove unused kernel configsThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update kernel config for atngw100_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Remove unused busybox configThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update default linux config for x86Thiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update i386_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Remove unused busybox.configThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update i686_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update atngw100-base_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-15Update atngw100-extended_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-05-08Update atngw100_defconfig to kernel 2.6.29.2Thiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com>
2009-05-08Update Linux Advanced to 2.6.29.2Thiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com>
2009-05-08Update atngw100_defconfigThiago A. Correa
Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com>
2009-04-30Make sure AVR32 defconfigs use u-boot 2008.10 (only known version to work ↵Thiago A. Corrêa
properly)
2009-04-30Undeprecate u-boot 2008.10 since this is the last version known to work with ↵Thiago A. Corrêa
JFFS2 fs and AVR32
2009-04-29target/device: fix busybox version / .config in defconfigsPeter Korsgaard
2009-04-29Fix atngw100_defconfig busybox config locationThiago A. Corrêa
2009-04-17Updated i686 configThiago A. Corrêa
2009-04-17Fix busybox config file locationThiago A. Corrêa
2009-04-15target/generic: support for busybox >= 1.14.x speed=0 handlingPeter Korsgaard
2009-04-15unmark the sparc targets as broken, they build if you disable shared libgccaustinf
2009-04-09target/Makefile.in: make 3.80 compatibility fixPeter Korsgaard
Patch by Andreas Schweigstill <aschweig@schweigstill.de>