blob: 5546c9063e7a5ac731d9d9799043797f9a8e04c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
|