summaryrefslogtreecommitdiffstats
path: root/target
Commit message (Collapse)AuthorAgeFilesLines
...
| * target/ext2: cleanupThomas Petazzoni2010-04-092-52/+5
| | | | | | | | | | | | | | Remove the genext2fs host tools building process, which is now in package/genext2fs. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cramfs: cleanupThomas Petazzoni2010-04-095-1612/+2
| | | | | | | | | | | | | | Remove the cramfs host tools building process, which is now in package/cramfs. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cpio: cleanupThomas Petazzoni2010-04-092-15/+3
| | | | | | | | | | | | | | | | | | | | | | | | * Remove the dependency on BR2_HOST_FAKEROOT, since we don't have config option for host tools. * Remove a few useless things. * Check that cpio is available on the host in toolchain/dependencies/dependencies.sh. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cloop: cleanupThomas Petazzoni2010-04-092-109/+27
| | | | | | | | | | | | | | | | | | | | | | | | Remove the code to build the cloop utilities for the host (it is now in package/cloop). Use fakeroot instead of ugly sudo. The cloop filesystem generation code is now much more similar to other filesystems code. Remove empty Makefile.in. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * squashfs: new packageThomas Petazzoni2010-04-091-41/+0
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * genext2fs: new packageThomas Petazzoni2010-04-092-35/+0
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | atmel: Add at91sam9g45ekes board supportJosh.Wu2010-04-092-0/+17
|/ | | | | Signed-off-by: Josh.Wu <josh.wu@atmel.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Enable e300c2, e300c3 and e500mc powerpc optimizationsGustavo Zacarias2010-04-081-0/+12
| | | | | | | Closes #1513 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/linux: bump 2.6.{27, 31, 32, 33} stable versionsH Hartley Sweeten2010-04-032-10/+10
| | | | | | | | Now that the kernel-headers are bumped, also bump the linux targets to match. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add missing directories to Busybox skeletonPaulius Zaleckas2010-04-022-0/+0
| | | | | Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove ConfigFS from Busybox skeletonPaulius Zaleckas2010-04-022-1/+0
| | | | | | | | | It is not included in generic skeleton and very unlikely that someone will use it on embedded devices. AFAIK even Fedora does not include it in fstab. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: add 2010.03, adapt target mkimage step to work with 2010.03Peter Korsgaard2010-04-022-2/+7
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* get rid of broken nios2 supportPeter Korsgaard2010-03-301-6/+1
| | | | | | | Has been marked as broken for more than 1 year, with no indication that anyone cares, and it needs a bunch of special handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/linux: remove ancient (<2.6.27) versionsPeter Korsgaard2010-03-147-30415/+1
| | | | | | And get rid of the corresponding at91 patches as well. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target: add linux 2.6.33H Hartley Sweeten2010-03-132-3/+16
| | | | | Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* remove -mm linux patch optionsH Hartley Sweeten2010-03-103-51/+0
| | | | | | | | | | | | | The -mm tree is really no longer available since the -next tree was created for testing. It's not even listed on the kernel.org site any longer. Plus, the last one that was published as available was pretty old, 2.6.28-rc2-mm1. Remove all the -mm patch stuff from Buildroot to clean up the Linux kernel selection. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* squashfs: fix 3.4 build after be8a104c3cd (pass CFLAGS/LDFLAGS and add ↵Peter Korsgaard2010-03-021-0/+28
| | | | | | | | | | host-zlib dependency) Commit be8a104c3cd (pass CFLAGS/LDFLAGS and add host-zlib dependency) changed the way make was invocated for squashfs and added a patch for 4.0, but forgot to add an equivalent patch for 3.4. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* squashfs: pass CFLAGS/LDFLAGS and add host-zlib dependencyThomas Petazzoni2010-02-262-2/+67
| | | | | | | | | | | | Squashfs depends on host-zlib, so we add this as a dependency. As host-zlib is installed in $(HOST_DIR), we must pass $(HOST_CFLAGS) and $(HOST_LDFLAGS). Unfortunately, if we pass CFLAGS=$(HOST_CFLAGS), we override the CFLAGS defined in the Makefile, and the build fails. Therefore, we borrow a patch from OpenEmbedded to fix this problem. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cramfs: add CFLAGS/LDFLAGS and host-zlib dependencyThomas Petazzoni2010-02-261-2/+2
| | | | | | | | | cramfs depends on host-zlib, so it must be built prior to cramfs. Moreover, we need to pass the HOST_CFLAGS and HOST_LDFLAGS variables, otherwise it doesn't find zlib in $(HOST_DIR). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* bump linux kernel versionsH Hartley Sweeten2010-02-242-7/+25
| | | | | | | | | | Bump all the linux kernel version to the latest available and add a help note for all of them with the release data and status. The long-term stable 2.6.27 kernel is really out of date (.27 -> .45). Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-advanced: Fix probing of kernel versionCameron Hutchison2010-02-231-1/+1
| | | | | | | | | | | | Probing the kernel version uses command substitution to capture the result of a make command. If the top-level make is run with -C, the sub-make will print entering/leaving directory messages, mucking up the output we're trying to capture. Invoke the sub-make with --no-print-directory so we get clean output. Signed-off-by: Cameron Hutchison <cam@camh.ch> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-advanced: add 2.6.32.8Will Wagner2010-02-232-6/+23
| | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* at91boostrap makefile, correct typo in line continuation character.Rob Alley2010-02-171-1/+1
| | | | | | | | | The rule to copy the resulting binary file into the binary directory had a typo in the line continuation character that results in a spurious error message being produced. Signed-off-by: Rob Alley <Rob.Alley@navmanwireless.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/jffs2: Don't select BR2_PACKAGE_MTDPeter Korsgaard2010-02-031-1/+0
| | | | | | Mtd-utils on the target are not a requirement to using jffs2. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Bump iptables to 1.4.6Gustavo Zacarias2010-01-201-0/+2
| | | | | | | Closes #913. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Drop generic package selection (access point, firewall, dev system)Gustavo Zacarias2009-12-261-63/+0
| | | | | | | | | | Closes #813. Drop generic package selection (access point, firewall, dev system) since they're too ambiguous and not very useful. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/u-boot: add 2009.11 and update target mkimage so it builds with 2009.11Peter Korsgaard2009-12-182-3/+11
| | | | | | | | In 2009.11, a number of extra files are needed to build mkimage. Adjust the makefile to add those if available, so it builds with both 2009.11 and older releases. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/u-boot: install mkimage to HOST_DIRPeter Korsgaard2009-12-181-3/+2
| | | | | | As suggested by Thomas. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix mkimage-install problem with external toolchain.Anders Darander2009-12-181-0/+1
| | | | | | | | | | | Closes #757. Make sure that /usr/bin/ exists, before trying to copy mkimage to that location. When using an external toolchain, /usr/bin is not guarenteed to exist. Signed-off-by: Anders Darander <ad@datarespons.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* remove unused AVR32 specific uClibc configurationThomas Petazzoni2009-12-141-227/+0
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Update non-AVR32 defconfigsThomas Petazzoni2009-12-141-2/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Remove external source toolchain optionsThomas Petazzoni2009-12-141-219/+0
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Use BR2_TOOLCHAIN_BUILDROOT instead of BR2_TOOLCHAIN_SOURCEThomas Petazzoni2009-12-141-1/+1
| | | | | | The BR2_TOOLCHAIN_SOURCE option is removed in a future commit. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* target/jffs2: add support for nand flash with 512B page / 16 kB erasesizeKelvin Cheung2009-11-221-0/+7
| | | | | | | Closes #663 Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add support for the Cortex-A8 ARM targetLaine Walker-Avina2009-11-181-0/+6
| | | | | Signed-off-by: Laine Walker-Avina <lwalkera@ieee.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device/Atmel/arch-arm/u-boot: Fix u-boot patch dependenciesPeter Korsgaard2009-10-291-0/+1
| | | | | | Ensure that the 2009.01 u-boot patches can only be enabled for 2009.01 builds. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: invert hide optionPeter Korsgaard2009-10-151-1/+1
| | | | | | | | | | Invert the BR2_PACKAGE_BUSYBOX_HIDE_OTHERS option to use positive logic, renaming it to _SHOW_OTHERS. Positive logic is simpler to understand, and it makes all{,package}config do the right thing. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* *-menuconfig needs dirs to existBernhard Reutner-Fischer2009-10-091-2/+2
| | | | | | | | In a pristine checkout the -menuconfig targets need their build dirs to exist. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* allow menuconfig without a LINUX26_KCONFIG fileBernhard Reutner-Fischer2009-10-071-1/+5
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mirrors: don't put atmel mirrors in seperate menuPeter Korsgaard2009-10-062-4/+1
| | | | | | | | | | Show Atmel mirrors together with the other mirrors, instead of hiding them in yet another sub-menu. At the same time, add an empty line before the Atmel include as noticed by Hartley Sweeten. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* default to EABI on armBernhard Reutner-Fischer2009-10-061-3/+6
| | | | | | | Use of OABI is strongly discouraged since years now. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* atmel mirrors are only needed for atmel targetsBernhard Reutner-Fischer2009-10-061-2/+2
| | | | | Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/generic: /etc/{hostname,issue}: work around quotes in kconfigPeter Korsgaard2009-10-061-2/+4
| | | | | | Otherwise the targets will always run. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* do not append localversion automaticallyBernhard Reutner-Fischer2009-10-051-1/+1
| | | | | | | prevents build failures if modules are enabled and localversion is "" Signed-off-by: aldot <rep.dot.nop@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* buildroot; move defconfigs to configs/ and print in helpPeter Korsgaard2009-10-0427-23453/+0
| | | | | | | | | | As discussed earlier on the mailing list. It simplifies code, gives more sensible error message on typos and makes the defconfigs easier to find for users. Furthermore, update documentation to match. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard2009-10-013-3/+3
| | | | | | | | | | We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* buildroot: reinstate /etc/{hostname,issue} kconfig when using generic targetPeter Korsgaard2009-09-302-1/+32
| | | | | | | These got lost in the recent cleanup, but are handy for minimal rootfs customization. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix download directory in default configsMichael Roth2009-09-3026-26/+26
| | | | | | | | | | | | | | | Commit a07d6b9d56955bfe0165b5f4ea6d3ed7a92ecff6 changed the meaning of $(BASE_DIR). Previously it was the top level buildroot directory, now it is the 'output' directory. As an side effect, the download directory 'dl' was moved to 'output/dl'. In commit 416323e93442646e344a4e914776520c5e552fa0 the default download directory was moved back to the top level of buildroot. So the various default configurations should reflect this. Fix them. Signed-off-by: Michael Roth <mroth@nessie.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* syslinux: update to v3.82Anders Darander2009-09-234-13/+14
| | | | | Signed-off-by: Anders Darander <ad@datarespons.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* 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>