2008-03-11 19:26:07 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# U-Boot
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-06-12 13:24:49 +02:00
|
|
|
U_BOOT_VERSION:=$(call qstrip,$(BR2_TARGET_UBOOT_VERSION))
|
2010-04-04 17:11:33 +02:00
|
|
|
U_BOOT_BOARD_NAME:=$(call qstrip,$(BR2_TARGET_UBOOT_BOARDNAME))
|
|
|
|
|
|
|
|
# U-Boot may not be selected in the configuration, but mkimage might
|
|
|
|
# be needed to build/prepare a kernel image. In this case, we just
|
|
|
|
# pick some random stable U-Boot version that will be used just to
|
|
|
|
# build mkimage.
|
|
|
|
ifeq ($(U_BOOT_VERSION),)
|
|
|
|
U_BOOT_VERSION=2010.03
|
|
|
|
endif
|
2009-01-02 12:18:09 +01:00
|
|
|
|
2010-06-12 13:18:04 +02:00
|
|
|
ifeq ($(U_BOOT_VERSION),custom)
|
|
|
|
# Handle custom U-Boot tarballs as specified by the configuration
|
|
|
|
U_BOOT_TARBALL=$(call qstrip,$(BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION))
|
|
|
|
U_BOOT_SITE:=$(dir $(U_BOOT_TARBALL))
|
|
|
|
U_BOOT_SOURCE:=$(notdir $(U_BOOT_TARBALL))
|
|
|
|
else
|
|
|
|
# Handle stable official U-Boot versions
|
|
|
|
U_BOOT_SITE:=ftp://ftp.denx.de/pub/u-boot
|
2008-03-11 19:26:07 +01:00
|
|
|
U_BOOT_SOURCE:=u-boot-$(U_BOOT_VERSION).tar.bz2
|
2010-06-12 13:18:04 +02:00
|
|
|
endif
|
2009-01-03 16:50:38 +01:00
|
|
|
|
Remove the "project" feature
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-05 15:49:30 +02:00
|
|
|
U_BOOT_DIR:=$(BUILD_DIR)/u-boot-$(U_BOOT_VERSION)
|
2008-03-11 19:26:07 +01:00
|
|
|
U_BOOT_CAT:=$(BZCAT)
|
|
|
|
U_BOOT_BIN:=u-boot.bin
|
2009-01-06 15:16:27 +01:00
|
|
|
|
2010-03-17 08:40:35 +01:00
|
|
|
MKIMAGE:=$(HOST_DIR)/usr/bin/mkimage
|
2009-01-06 15:16:27 +01:00
|
|
|
|
2010-03-17 08:40:35 +01:00
|
|
|
U_BOOT_TARGETS:=$(BINARIES_DIR)/$(U_BOOT_BIN) $(MKIMAGE)
|
2009-01-03 16:50:38 +01:00
|
|
|
|
2008-04-23 12:30:03 +02:00
|
|
|
# u-boot still uses arch=ppc for powerpc
|
2008-06-12 09:27:48 +02:00
|
|
|
U_BOOT_ARCH=$(KERNEL_ARCH:powerpc=ppc)
|
2008-03-11 19:26:07 +01:00
|
|
|
|
|
|
|
U_BOOT_INC_CONF_FILE:=$(U_BOOT_DIR)/include/config.h
|
|
|
|
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_TARGET_UBOOT_TOOL_MKIMAGE),y)
|
2009-01-21 16:49:06 +01:00
|
|
|
U_BOOT_TARGETS+=$(TARGET_DIR)/usr/bin/mkimage
|
2008-04-23 15:03:53 +02:00
|
|
|
endif
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_TARGET_UBOOT_TOOL_ENV),y)
|
2009-01-21 16:49:06 +01:00
|
|
|
U_BOOT_TARGETS+=$(TARGET_DIR)/usr/sbin/fw_printenv
|
2008-04-23 15:03:53 +02:00
|
|
|
endif
|
|
|
|
|
2009-01-03 16:50:38 +01:00
|
|
|
U_BOOT_CONFIGURE_OPTS += CONFIG_NOSOFTFLOAT=1
|
2008-04-23 15:03:53 +02:00
|
|
|
|
2008-03-11 19:26:07 +01:00
|
|
|
# Define a helper function
|
|
|
|
define insert_define
|
|
|
|
@echo "#ifdef $(strip $(1))" >> $(U_BOOT_INC_CONF_FILE)
|
|
|
|
@echo "#undef $(strip $(1))" >> $(U_BOOT_INC_CONF_FILE)
|
|
|
|
@echo "#endif" >> $(U_BOOT_INC_CONF_FILE)
|
2009-07-30 17:35:13 +02:00
|
|
|
@echo '#define $(strip $(1)) $(call qstrip,$(2))' >> $(U_BOOT_INC_CONF_FILE)
|
2008-03-11 19:26:07 +01:00
|
|
|
endef
|
2008-04-01 09:03:07 +02:00
|
|
|
|
2008-03-11 19:26:07 +01:00
|
|
|
$(DL_DIR)/$(U_BOOT_SOURCE):
|
2009-01-16 13:07:53 +01:00
|
|
|
$(call DOWNLOAD,$(U_BOOT_SITE),$(U_BOOT_SOURCE))
|
2008-03-11 19:26:07 +01:00
|
|
|
|
|
|
|
$(U_BOOT_DIR)/.unpacked: $(DL_DIR)/$(U_BOOT_SOURCE)
|
2010-06-12 13:18:04 +02:00
|
|
|
mkdir -p $(@D)
|
|
|
|
$(INFLATE$(suffix $(U_BOOT_SOURCE))) $(DL_DIR)/$(U_BOOT_SOURCE) \
|
|
|
|
| tar $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
|
2008-03-11 19:26:07 +01:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(U_BOOT_DIR)/.patched: $(U_BOOT_DIR)/.unpacked
|
2010-03-14 18:20:45 +01:00
|
|
|
toolchain/patch-kernel.sh $(U_BOOT_DIR) boot/u-boot \
|
2008-04-23 16:52:38 +02:00
|
|
|
u-boot-$(U_BOOT_VERSION)-\*.patch \
|
|
|
|
u-boot-$(U_BOOT_VERSION)-\*.patch.$(ARCH)
|
2010-03-15 23:25:53 +01:00
|
|
|
ifneq ($(qstrip $(BR2_TARGET_UBOOT_CUSTOM_PATCH_DIR)),)
|
|
|
|
toolchain/patch-kernel.sh $(U_BOOT_DIR) $(U_BOOT_CUSTOM_PATCH_DIR) u-boot-$(U_BOOT_VERSION)-\*.patch
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|
|
|
|
touch $@
|
|
|
|
|
2009-01-26 15:49:00 +01:00
|
|
|
$(U_BOOT_DIR)/.configured: $(U_BOOT_DIR)/.patched
|
2010-04-04 17:11:33 +02:00
|
|
|
ifeq ($(U_BOOT_BOARD_NAME),)
|
|
|
|
$(error NO U-Boot board name set. Check your BR2_TARGET_UBOOT_BOARDNAME setting)
|
|
|
|
endif
|
2008-03-11 19:26:07 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2009-01-03 16:50:38 +01:00
|
|
|
$(U_BOOT_CONFIGURE_OPTS) \
|
2008-03-11 19:26:07 +01:00
|
|
|
$(MAKE) -C $(U_BOOT_DIR) \
|
2010-03-17 08:40:35 +01:00
|
|
|
$(U_BOOT_BOARD_NAME)_config
|
2008-03-11 19:26:07 +01:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(U_BOOT_DIR)/.header_modified: $(U_BOOT_DIR)/.configured
|
|
|
|
# Modify configuration header in $(U_BOOT_INC_CONF_FILE)
|
2010-03-17 08:40:35 +01:00
|
|
|
ifdef BR2_TARGET_UBOOT_NETWORK
|
2008-03-11 19:26:07 +01:00
|
|
|
@echo >> $(U_BOOT_INC_CONF_FILE)
|
|
|
|
@echo "/* Add a wrapper around the values Buildroot sets. */" >> $(U_BOOT_INC_CONF_FILE)
|
|
|
|
@echo "#ifndef __BR2_ADDED_CONFIG_H" >> $(U_BOOT_INC_CONF_FILE)
|
|
|
|
@echo "#define __BR2_ADDED_CONFIG_H" >> $(U_BOOT_INC_CONF_FILE)
|
2009-02-10 16:19:57 +01:00
|
|
|
$(call insert_define, DATE, $(DATE))
|
2009-01-03 01:00:46 +01:00
|
|
|
$(call insert_define, CONFIG_LOAD_SCRIPTS, 1)
|
2008-03-11 19:26:07 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_IPADDR)),"")
|
2008-08-20 22:04:14 +02:00
|
|
|
$(call insert_define, CONFIG_IPADDR, $(BR2_TARGET_UBOOT_IPADDR))
|
2010-03-17 08:40:35 +01:00
|
|
|
endif
|
2008-03-11 19:26:07 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_GATEWAY)),"")
|
2008-08-20 22:04:14 +02:00
|
|
|
$(call insert_define, CONFIG_GATEWAYIP, $(BR2_TARGET_UBOOT_GATEWAY))
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_NETMASK)),"")
|
2008-08-20 22:04:14 +02:00
|
|
|
$(call insert_define, CONFIG_NETMASK, $(BR2_TARGET_UBOOT_NETMASK))
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|
2009-01-03 01:00:46 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_SERVERIP)),"")
|
|
|
|
$(call insert_define, CONFIG_SERVERIP, $(BR2_TARGET_UBOOT_SERVERIP))
|
|
|
|
endif
|
2008-03-11 19:26:07 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_ETHADDR)),"")
|
2008-08-20 22:04:14 +02:00
|
|
|
$(call insert_define, CONFIG_ETHADDR, $(BR2_TARGET_UBOOT_ETHADDR))
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|
|
|
|
ifneq ($(strip $(BR2_TARGET_UBOOT_ETH1ADDR)),"")
|
2009-01-03 01:00:46 +01:00
|
|
|
$(call insert_define, CONFIG_ETH1ADDR, $(BR2_TARGET_UBOOT_ETH1ADDR))
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|
|
|
|
@echo "#endif /* __BR2_ADDED_CONFIG_H */" >> $(U_BOOT_INC_CONF_FILE)
|
2010-03-17 08:40:35 +01:00
|
|
|
endif # BR2_TARGET_UBOOT_NETWORK
|
2008-03-11 19:26:07 +01:00
|
|
|
touch $@
|
|
|
|
|
2010-05-31 19:34:27 +02:00
|
|
|
# Build U-Boot itself
|
2008-03-11 19:26:07 +01:00
|
|
|
$(U_BOOT_DIR)/$(U_BOOT_BIN): $(U_BOOT_DIR)/.header_modified
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
LDFLAGS="$(TARGET_LDFLAGS)" \
|
2009-01-03 16:50:38 +01:00
|
|
|
$(U_BOOT_CONFIGURE_OPTS) \
|
2008-04-23 15:03:50 +02:00
|
|
|
$(MAKE) CROSS_COMPILE="$(TARGET_CROSS)" ARCH=$(U_BOOT_ARCH) \
|
2008-04-23 12:30:03 +02:00
|
|
|
-C $(U_BOOT_DIR)
|
2008-03-11 19:26:07 +01:00
|
|
|
|
2010-05-31 19:34:27 +02:00
|
|
|
# Copy the result to the images/ directory
|
2008-03-11 19:26:07 +01:00
|
|
|
$(BINARIES_DIR)/$(U_BOOT_BIN): $(U_BOOT_DIR)/$(U_BOOT_BIN)
|
2009-01-02 12:18:09 +01:00
|
|
|
rm -f $(BINARIES_DIR)/$(U_BOOT_BIN)
|
2010-03-15 23:47:45 +01:00
|
|
|
cp -dpf $(U_BOOT_DIR)/$(U_BOOT_BIN) $(BINARIES_DIR)/
|
2009-01-02 12:18:09 +01:00
|
|
|
|
2010-04-04 17:11:33 +02:00
|
|
|
# Build just mkimage for the host. It might have already been built by
|
|
|
|
# the U-Boot build procedure, but mkimage may also be needed even if
|
|
|
|
# U-Boot isn't selected in the configuration, to generate a kernel
|
|
|
|
# uImage.
|
|
|
|
$(MKIMAGE): $(U_BOOT_DIR)/.patched
|
2009-12-02 13:29:23 +01:00
|
|
|
mkdir -p $(@D)
|
2010-04-04 17:11:33 +02:00
|
|
|
$(MAKE) -C $(U_BOOT_DIR) tools
|
|
|
|
cp -dpf $(U_BOOT_DIR)/tools/mkimage $(@D)
|
2008-03-11 19:26:07 +01:00
|
|
|
|
2010-05-31 19:34:27 +02:00
|
|
|
# Build manually mkimage for the target
|
2010-04-04 17:11:33 +02:00
|
|
|
$(TARGET_DIR)/usr/bin/mkimage: $(U_BOOT_DIR)/.configured
|
2008-06-17 10:04:15 +02:00
|
|
|
mkdir -p $(@D)
|
2009-06-29 20:56:49 +02:00
|
|
|
$(TARGET_CC) -I$(U_BOOT_DIR)/include -I$(U_BOOT_DIR)/tools \
|
|
|
|
-DUSE_HOSTCC -o $@ \
|
2009-12-18 09:33:45 +01:00
|
|
|
$(U_BOOT_DIR)/common/image.c \
|
|
|
|
$(wildcard $(addprefix $(U_BOOT_DIR)/tools/,default_image.c \
|
2010-04-02 15:00:59 +02:00
|
|
|
fit_image.c imximage.c kwbimage.c mkimage.c)) \
|
2009-06-29 20:56:49 +02:00
|
|
|
$(addprefix $(U_BOOT_DIR)/lib_generic/,crc32.c md5.c sha1.c) \
|
2009-12-18 09:33:45 +01:00
|
|
|
$(U_BOOT_DIR)/tools/os_support.c \
|
2009-06-29 20:56:49 +02:00
|
|
|
$(U_BOOT_DIR)/libfdt/fdt*.c
|
|
|
|
|
2008-04-23 15:03:53 +02:00
|
|
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $@
|
|
|
|
|
2010-05-31 19:34:27 +02:00
|
|
|
# Build manually fw_printenv for the target
|
2010-04-04 17:11:33 +02:00
|
|
|
$(TARGET_DIR)/usr/sbin/fw_printenv: $(U_BOOT_DIR)/.configured
|
2008-06-17 10:04:15 +02:00
|
|
|
mkdir -p $(@D)
|
2008-04-23 15:03:53 +02:00
|
|
|
$(TARGET_CC) -I$(U_BOOT_DIR)/include -I$(LINUX_HEADERS_DIR)/include \
|
|
|
|
-DUSE_HOSTCC -o $@ \
|
2009-06-29 20:56:49 +02:00
|
|
|
$(U_BOOT_DIR)/tools/env/*.c $(U_BOOT_DIR)/lib_generic/crc32.c
|
2008-04-23 15:03:53 +02:00
|
|
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $@
|
2008-04-23 16:52:35 +02:00
|
|
|
ln -sf fw_printenv $(TARGET_DIR)/usr/sbin/fw_setenv
|
2008-04-23 15:03:53 +02:00
|
|
|
|
2009-01-06 15:16:27 +01:00
|
|
|
u-boot: $(U_BOOT_TARGETS)
|
2009-01-03 16:50:38 +01:00
|
|
|
|
2008-03-11 19:26:07 +01:00
|
|
|
u-boot-clean:
|
2008-04-01 09:03:07 +02:00
|
|
|
-$(MAKE) -C $(U_BOOT_DIR) clean
|
2010-05-31 19:32:35 +02:00
|
|
|
rm -f $(MKIMAGE)
|
2008-03-11 19:26:07 +01:00
|
|
|
|
|
|
|
u-boot-dirclean:
|
|
|
|
rm -rf $(U_BOOT_DIR)
|
|
|
|
|
|
|
|
u-boot-source: $(DL_DIR)/$(U_BOOT_SOURCE)
|
|
|
|
|
2009-01-03 01:00:46 +01:00
|
|
|
u-boot-unpacked: $(U_BOOT_DIR)/.patched
|
|
|
|
|
|
|
|
u-boot-configured: $(U_BOOT_DIR)/.header_modified
|
|
|
|
|
2008-03-11 19:26:07 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
2008-12-08 09:15:58 +01:00
|
|
|
ifeq ($(BR2_TARGET_UBOOT),y)
|
2009-01-26 12:46:44 +01:00
|
|
|
TARGETS+=u-boot
|
2009-01-26 15:49:19 +01:00
|
|
|
|
|
|
|
# we NEED a board name
|
2010-03-17 08:40:35 +01:00
|
|
|
ifeq ($(U_BOOT_BOARD_NAME),)
|
2009-01-26 15:49:19 +01:00
|
|
|
$(error NO U-Boot board name set. Check your BR2_TARGET_UBOOT_BOARDNAME setting)
|
|
|
|
endif
|
|
|
|
|
2008-03-11 19:26:07 +01:00
|
|
|
endif
|