summaryrefslogtreecommitdiff
path: root/target/u-boot
AgeCommit message (Collapse)Author
2010-04-12Get rid of all usages of BR2_RECENTThomas Petazzoni
Since BR2_RECENT was enabled by default, we do not want entries marked BR2_RECENT (and thus appearing by default in Buildroot) to disappear. Therefore, all the entries marked BR2_RECENT are converted as non-deprecated. We can later decide, on a per-entry basis, to add BR2_DEPRECATED to some of them. But at least, this commit doesn't change the default current behaviour of Buildroot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-04-02u-boot: add 2010.03, adapt target mkimage step to work with 2010.03Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-18target/u-boot: add 2009.11 and update target mkimage so it builds with 2009.11Peter Korsgaard
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>
2009-12-18target/u-boot: install mkimage to HOST_DIRPeter Korsgaard
As suggested by Thomas. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-18Fix mkimage-install problem with external toolchain.Anders Darander
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>
2009-09-16Remove the "project" featureThomas Petazzoni
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>
2009-09-05target: use qstripThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-09-01u-boot: remove ancient 1.3.4 versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-09-01u-boot: add 2009.08Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-08-27u-boot: mark old 2008.10 version as deprecatedPeter Korsgaard
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-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-03-23u-boot: add 2009.03 releasePeter Korsgaard
2009-03-23u-boot: get rid of version specific patch dirsPeter Korsgaard
All those dirs seem a bit excessive for a single patch
2009-03-11Revert wrongly commited files (u-boot changes) from -r25617Thiago A. Corrêa
2009-03-11Let user skip installation of the GUI module for QtopiaThiago A. Corrêa
2009-02-10u-boot: don't touch config.h unless explicitly requested by userPeter Korsgaard
Fixes the problem of important variables like serverip being overwritten with empty strings if the network/default env stuff isn't used.
2009-02-10u-boot: remove unused BOOTARGS / BOOTCMD handlingPeter Korsgaard
Not available in Kconfig and no references to it in the tree.
2009-02-10u-boot: don't make ETH1ADDR setting depend on avr32Peter Korsgaard
No sensible reason why this should only be present on avr32.
2009-02-07u-boot: remove commented out linePeter Korsgaard
2009-02-06Simplify kernel naming scheme. Only use kernel name plus the rootfs suffix ↵Thiago A. Corrêa
if one is provided
2009-02-04u-boot: fix dependency for host mkimagePeter Korsgaard
2009-01-26u-boot: halt build early with description if no u-boot board name is setPeter Korsgaard
2009-01-26u-boot: clean up after UlfPeter Korsgaard
As discussed on the list.
2009-01-26u-boot: mark 2008.10 version as recentPeter Korsgaard
2009-01-26Fix erronous mkimage targetUlf Samuelsson
2009-01-26Revert bad patch to fix linux rebuild problemUlf Samuelsson
2009-01-22Use latest u-boot as defaultUlf Samuelsson
2009-01-22u-boot: add 2009.01, remove -rc3Peter Korsgaard
2009-01-22Fix AVR32 u.boot build bugUlf Samuelsson
2009-01-21u-boot: unbreak target toolsPeter Korsgaard
Got broken by r24697.
2009-01-20U_BOOT_ARCH_PATCH_DIR should contain a value or should not be defined, empty ↵Ulf Samuelsson
string is not allowed
2009-01-19Bump u-boot to -2009.01-rc3, and add possibility to apply the arch-at91 ↵Ulf Samuelsson
patches if using an at91
2009-01-18Kconfig: remove 'default n' and 'default no' (see r22874)Peter Korsgaard
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
2009-01-16buildroot: convert remaining WGET users to DOWNLOAD helperPeter Korsgaard
2009-01-11Move AT91 patches for u-boot-2009.01-rc1 to ↵Ulf Samuelsson
device/Atmel/arch-arm/u-boot/2009.01-rc1
2009-01-11Remove premature deprecation of u-boot-1.2.0-atmelUlf Samuelsson
2009-01-08target/u-boot: more cleanupsPeter Korsgaard
As discussed on the list. - No sense in depending on BR2_TARGET_UBOOT when the configurations are within a if BR2_TARGET_UBOOT conditional. - n is default, so remove 'default n' - clarify nested conditionals
2009-01-08target/u-boot: cleanupPeter Korsgaard
Fix s/Linux/U-Boot/ typo, default to the latest stable version, mark old versions as deprecated and comment out unreleased version for now.
2009-01-06Add CONFIGs for new commands to at91 partsUlf Samuelsson
2009-01-06Add support for waiting for NFS root server before bootingUlf Samuelsson
2009-01-06Remove patches that should not have been inlcuded in the spimux commitUlf Samuelsson
2009-01-06Add 'mux' command to control ext mux on at91rm9200dk/ekUlf Samuelsson
2009-01-06Add 'led' command to control coloured LEDsUlf Samuelsson
2009-01-06Remove an extra #endif from u-boot.factoryUlf Samuelsson
2009-01-06Fix some CFG/CONFIG related problems for AT91RM9200 configuration of U-BootUlf Samuelsson
2009-01-06Use the correct sam9g20 patch for 2009.01-rc1Ulf Samuelsson
2009-01-06Use PROJECT-u-boot-VERSION-DATE.bin as u-boot targetUlf Samuelsson
Provide link using "u-boot.bin" Add BR2_TARGET_UBOOT_DEFAULT_ENV config If this is set, Buildroot will generate a default environment to allow easy downloading of the kernel and root file system Both as compile time data and an autoscript. Make u-boot depend on $(U_BOOT_TARGETS) Add "u-boot-autoscript" to U_BOOT_TARGETS if BR2_TARGET_UBOOT_DEFAULT_ENV is set. Take kernel name from Linux build. Use correct ARCH when mkimaging the autoscript. Do not use TARGET_ATMEL_COPYTO for generic u-boot. Hide dataflash memory configurations when different boot memory is used.
2009-01-05u-boot: unbreak build after r24674Peter Korsgaard
Disable broken autoscript handling so the build atleast completes