summaryrefslogtreecommitdiff
path: root/package/u-boot/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-01-10 04:23:38 -0600
committerWaldemar Brodkorb <wbx@openadk.org>2015-01-10 04:23:48 -0600
commit8a4015ce6cebd7a83eae1207fe3b3ed8163526fc (patch)
tree8e81c59a60f67a77ba572f005b918fa53df77159 /package/u-boot/Makefile
parentd932da8684079763b8fe2062484f93ba9902c8d4 (diff)
add basic support for atmel ngw100. no runtime testing yet
Diffstat (limited to 'package/u-boot/Makefile')
-rw-r--r--package/u-boot/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile
index e0ba6dccf..61674a28e 100644
--- a/package/u-boot/Makefile
+++ b/package/u-boot/Makefile
@@ -10,9 +10,8 @@ PKG_DESCR:= portable bootloader
PKG_SECTION:= base/boot
PKG_URL:= http://www.denx.de/wiki/U-Boot
PKG_SITES:= git://git.denx.de/u-boot.git
-NO_CHECKSUM:= 1
-PKG_SYSTEM_DEPENDS:= raspberry-pi
+PKG_SYSTEM_DEPENDS:= raspberry-pi atmel-ngw100
include $(ADK_TOPDIR)/mk/host.mk
include $(ADK_TOPDIR)/mk/package.mk
@@ -23,6 +22,9 @@ $(eval $(call PKG_template,U_BOOT,u-boot,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEP
ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y)
CONFIG:= rpi_defconfig
endif
+ifeq ($(ADK_TARGET_SYSTEM_ATMEL_NGW100),y)
+CONFIG:= atngw100_defconfig
+endif
HOST_STYLE:= manual
CONFIG_STYLE:= manual
@@ -47,7 +49,7 @@ do-build:
GCC_HONOUR_COPTS=s $(MAKE))
u-boot-install:
- $(CP) $(WRKBUILD)/u-boot $(FW_DIR)
+ $(CP) $(WRKBUILD)/u-boot.bin $(FW_DIR)
include $(ADK_TOPDIR)/mk/host-bottom.mk
include $(ADK_TOPDIR)/mk/pkg-bottom.mk