diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2007-04-05 13:23:15 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2007-04-05 13:23:15 +0000 |
commit | 9a8ff3b05d3e35ba34e6e6b5cd17c9134a1cc8db (patch) | |
tree | c0d7d521399f4958b7aa2ecead7eeeb2c44033b7 /target/linux/at91-2.6/image/u-boot/Makefile | |
parent | a726e63349ad149f9529cd7d91e4d44097f79451 (diff) | |
download | upstream-9a8ff3b05d3e35ba34e6e6b5cd17c9134a1cc8db.tar.gz upstream-9a8ff3b05d3e35ba34e6e6b5cd17c9134a1cc8db.tar.bz2 upstream-9a8ff3b05d3e35ba34e6e6b5cd17c9134a1cc8db.zip |
Added module to generate u-boot config file. Added platform overrides for base files.
SVN-Revision: 6870
Diffstat (limited to 'target/linux/at91-2.6/image/u-boot/Makefile')
-rw-r--r-- | target/linux/at91-2.6/image/u-boot/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/target/linux/at91-2.6/image/u-boot/Makefile b/target/linux/at91-2.6/image/u-boot/Makefile index 4584f20f8b..35b1e9bff1 100644 --- a/target/linux/at91-2.6/image/u-boot/Makefile +++ b/target/linux/at91-2.6/image/u-boot/Makefile @@ -27,11 +27,18 @@ define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) $(UBOOT_CONFIG)_config export CROSS_COMPILE=$(TARGET_CROSS); \ $(MAKE) -C $(PKG_BUILD_DIR) + mkdir -p $(PKG_BUILD_DIR)/ubclient + $(CP) ./ubclient/* $(PKG_BUILD_DIR)/ubclient + $(MAKE) -C $(PKG_BUILD_DIR)/ubclient \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -Dtarget_$(BOARD)=1" endef define Build/InstallDev dd if=$(PKG_BUILD_DIR)/u-boot.bin of=$(PKG_BUILD_DIR)/u-boot.block bs=232k count=1 conv=sync -# mv $(PKG_BUILD_DIR) $(KERNEL_BUILD_DIR)/$(PKG_NAME) +# $(INSTALL_DIR) $(STAGING_DIR)/ubclient/sbin +# $(INSTALL_BIN) $(PKG_BUILD_DIR)/ubclient/ubpar $(STAGING_DIR)/ubclient/sbin/ + $(CP) $(PKG_BUILD_DIR)/ubclient/ubpar ../../base-files/default/sbin endef $(eval $(call Build/DefaultTargets)) |