diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-18 07:42:14 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-02-18 07:42:14 +0100 |
commit | 97857425df0e2878902eb651e2ce71ac476c407b (patch) | |
tree | 4e55ceea83efaafe37dfc6965c1071f11fcce8e3 /package/u-boot | |
parent | ad7fa8e7f6f555849b39ebd4cd67df13e58983d4 (diff) |
add initial stuff for cubox-i, still waiting for the hardware, so fully untested
Diffstat (limited to 'package/u-boot')
-rw-r--r-- | package/u-boot/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile new file mode 100644 index 000000000..5546c9063 --- /dev/null +++ b/package/u-boot/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= u-boot +PKG_VERSION:= 2014.01 +PKG_RELEASE:= 1 +PKG_MD5SUM:= e531307578f6d32a7ccb1d04f1e08cbc +PKG_DESCR:= bootloader +PKG_SECTION:= boot +PKG_URL:= http://www.denx.de/wiki/U-Boot +PKG_SITES:= ftp://ftp.denx.de/pub/u-boot/ + +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,U_BOOT,u-boot,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual + +do-configure: + echo "no config for your target available" + +u-boot-install: + +include ${TOPDIR}/mk/pkg-bottom.mk |