summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2022-08-31 10:42:45 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2022-08-31 10:42:53 +0200
commit59324eb3d770ff52ad7a9b8f73a4f992b898e27d (patch)
tree7258fca4c50476b480422feee21bef22c555492a /package
parentf282f02d17bdb6e5cbfbf745f835c036fb26324d (diff)
some changes for img-tec and various things
Diffstat (limited to 'package')
-rw-r--r--package/fmt/Makefile1
-rw-r--r--package/libcdio/Makefile2
-rw-r--r--package/u-boot/Makefile9
3 files changed, 11 insertions, 1 deletions
diff --git a/package/fmt/Makefile b/package/fmt/Makefile
index 4aa6aab5b..82d25c0cf 100644
--- a/package/fmt/Makefile
+++ b/package/fmt/Makefile
@@ -9,6 +9,7 @@ PKG_RELEASE:= 1
PKG_HASH:= 3d794d3cf67633b34b2771eb9f073bde87e846e0d395d254df7b211ef1ec7346
PKG_DESCR:= modern formatting library
PKG_SECTION:= libs/misc
+PKG_BUILDDEP:= cmake-host
PKG_URL:= http://fmtlib.net/latest/index.html
PKG_SITES:= https://github.com/fmtlib/fmt/archive/
PKG_LIBNAME:= libfmt
diff --git a/package/libcdio/Makefile b/package/libcdio/Makefile
index fca3550aa..955f44359 100644
--- a/package/libcdio/Makefile
+++ b/package/libcdio/Makefile
@@ -9,6 +9,8 @@ PKG_RELEASE:= 1
PKG_HASH:= 8550e9589dbd594bfac93b81ecf129b1dc9d0d51e90f9696f1b2f9b2af32712b
PKG_DESCR:= library for cd-rom and cd image access
PKG_SECTION:= libs/misc
+PKG_DEPENDS:= ncurses
+PKG_BUILDDEP:= ncurses
PKG_URL:= http://www.gnu.org/software/libcdio
PKG_SITES:= http://ftp.gnu.org/gnu/libcdio/
PKG_OPTS:= dev
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile
index da6389972..03bc50d76 100644
--- a/package/u-boot/Makefile
+++ b/package/u-boot/Makefile
@@ -16,7 +16,7 @@ PKG_SITES:= ftp://ftp.denx.de/pub/u-boot/
DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
-PKG_SYSTEM_DEPENDS:= beaglebone-black orange-pi0 raspberry-pi raspberry-pi2 raspberry-pi3 banana-pro solidrun-imx6 solidrun-clearfog raspberry-pi3-64 raspberry-pi3p raspberry-pi3p-64 phytec-imx6 pcduino-3b
+PKG_SYSTEM_DEPENDS:= beaglebone-black orange-pi0 raspberry-pi raspberry-pi2 raspberry-pi3 banana-pro solidrun-imx6 solidrun-clearfog raspberry-pi3-64 raspberry-pi3p raspberry-pi3p-64 phytec-imx6 pcduino-3b imgtec-ci20
include $(ADK_TOPDIR)/mk/host.mk
include $(ADK_TOPDIR)/mk/package.mk
@@ -70,6 +70,10 @@ ifeq ($(ADK_TARGET_SYSTEM_BEAGLEBONE_BLACK),y)
CONFIG:= am335x_evm_defconfig
UBOOT:= u-boot.img
endif
+ifeq ($(ADK_TARGET_SYSTEM_IMGTEC_CI20),y)
+CONFIG:= ci20_mmc_defconfig
+UBOOT:= u-boot-dtb.img
+endif
HOST_MAKE_FLAGS+= HOSTCFLAGS="$(HOST_CPPFLAGS) $(HOST_CFLAGS)" \
HOSTLDFLAGS="$(HOST_LDFLAGS) -ldl"
@@ -105,6 +109,9 @@ endif
u-boot-install:
$(CP) $(WRKBUILD)/$(UBOOT) $(FW_DIR)
+ifeq ($(ADK_TARGET_SYSTEM_IMGTEC_CI20),y)
+ $(CP) $(WRKBUILD)/spl/u-boot-spl.bin $(FW_DIR)
+endif
$(INSTALL_DIR) $(IDIR_U_BOOT)/etc
$(CP) ./files/fw_env.config $(IDIR_U_BOOT)/etc
ifneq ($(OS_FOR_BUILD),Darwin)