summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* mirrors: don't put atmel mirrors in seperate menuPeter Korsgaard2009-10-061-4/+0
| | | | | | | | | | 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>
* buildroot; move defconfigs to configs/ and print in helpPeter Korsgaard2009-10-0421-18766/+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>
* Fix download directory in default configsMichael Roth2009-09-3020-20/+20
| | | | | | | | | | | | | | | 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>
* rename TOOL_BUILD_DIR to TOOLCHAIN_DIRMichael Roth2009-09-236-6/+6
| | | | | | | | 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-194-6/+4
| | | | | | | | | 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-163-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* target: use qstripThomas Petazzoni2009-09-054-30/+16
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* buildroot: fix fallout after qtopia4 -> qt renamePeter Korsgaard2009-08-0320-76/+76
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/device: rename program invocation symbol in defconfigsPeter Korsgaard2009-07-3110-10/+10
| | | | | | The symbol is now BR2_PROGRAM_INVOCATION, not BR2_UCLIBC_PROGRAM_INVOCATION. 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 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>
* Update atngw100_defconfigThiago A. Correa2009-05-081-10/+6
| | | | Signed-off-by: Thiago A. Correa <thiago.correa@gmail.com>
* Make sure AVR32 defconfigs use u-boot 2008.10 (only known version to work ↵Thiago A. Corrêa2009-04-302-47/+50
| | | | properly)
* target/device: fix busybox version / .config in defconfigsPeter Korsgaard2009-04-292-5/+5
|
* Fix atngw100_defconfig busybox config locationThiago A. Corrêa2009-04-291-40/+45
|
* target/device/Atmel: remove unused legacy u-boot handlingPeter Korsgaard2009-04-013-330/+0
|
* fakeroot: install into HOST_DIRPeter Korsgaard2009-04-011-1/+1
|
* makedevs: install into HOST_DIRPeter Korsgaard2009-04-011-1/+1
|
* pkgconfig: add pkgconfig package for targetPeter Korsgaard2009-03-1822-22/+0
| | | | | | | | | | | | | The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
* Revert wrongly commited files (u-boot changes) from -r25617Thiago A. Corrêa2009-03-111-9/+24
|
* Let user skip installation of the GUI module for QtopiaThiago A. Corrêa2009-03-111-24/+9
|
* s/buildroot.uclibc.org/buildroot.net/Peter Korsgaard2009-03-0219-19/+19
|
* avr32: rename 2.6.28.x kernel patches to match current kernel headers versionPeter Korsgaard2009-02-255-0/+0
|
* Remove BR2_LINUX_COPYTO_TFTPBOOT from avr32 defconfigs. This will cause ↵Thiago A. Corrêa2009-02-093-3/+3
| | | | build to fail if user is not root and don't have a /tftpboot folder
* Update sam9g20 BSPUlf Samuelsson2009-02-021-23/+19
|
* Add AT91 defconfigs for binary toolchainsUlf Samuelsson2009-01-319-1/+6780
|
* Add barebone at91sam9260 boardUlf Samuelsson2009-01-311-0/+681
|
* Update at91rm9200df BSPUlf Samuelsson2009-01-311-17/+17
|
* Update atstk200x BSPUlf Samuelsson2009-01-311-16/+14
|
* Update atstk1005 BSPUlf Samuelsson2009-01-311-16/+14
|
* Update atngw100 BSPUlf Samuelsson2009-01-311-16/+14
|
* Update at91sam9263ek BSPUlf Samuelsson2009-01-311-17/+17
|
* defconfig using binary toolchainUlf Samuelsson2009-01-311-0/+981
|
* defconfig for arm toolchainUlf Samuelsson2009-01-311-0/+761
|
* Remove AVR32 patches from kernel-headers directory and put them in Ulf Samuelsson2009-01-306-0/+16951
| | | | | | | | | | "target/device/Atmel/arch-avre/kernel-headers-2.6.28.2" Make sure BR2_KERNEL_HEADERS_PATCH_DIR is enabled for 2.6.28 Set KERNEL_HEADERS_PATCH_DIR="target/device/Atmel/arch-avre/kernel-headers-2.6.28.2" for Atmel AVR32 targets and "valka"
* readline: s/BR2_READLINE/BR2_PACKAGE_READLINE/Peter Korsgaard2009-01-3011-11/+11
| | | | Package configs should start with BR2_PACKAGE_.
* Move AVR32 patch to kernel header to unbreak several applicationsUlf Samuelsson2009-01-305-16947/+0
|
* Update some comments, which will cause defconfig to wait for inputUlf Samuelsson2009-01-291-7/+3
|
* Update some comments, which will cause defconfig to wait for inputUlf Samuelsson2009-01-292-8/+3
|
* Update some comments, which will cause defconfig to wait for inputUlf Samuelsson2009-01-291-10/+6
|
* at91rm9200df defconfig comment updateUlf Samuelsson2009-01-291-7/+3
|
* 2.6.23 is not patchable for at91, cleanup some commentsUlf Samuelsson2009-01-291-13/+4
|
* Delete AT91 patches before 2.6.22Ulf Samuelsson2009-01-294-41457/+5
|