diff options
Diffstat (limited to 'package/u-boot')
-rw-r--r-- | package/u-boot/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile index a6e1b6e85..0b976ac2f 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 +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 include $(ADK_TOPDIR)/mk/host.mk include $(ADK_TOPDIR)/mk/package.mk @@ -42,9 +42,15 @@ endif ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI3),y) CONFIG:= rpi_3_32b_defconfig endif +ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI3P),y) +CONFIG:= rpi_3_32b_defconfig +endif ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI3_64),y) CONFIG:= rpi_3_defconfig endif +ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI3P_64),y) +CONFIG:= rpi_3_defconfig +endif ifeq ($(ADK_TARGET_SYSTEM_BANANA_PRO),y) CONFIG:= Bananapro_defconfig UBOOT:= u-boot-sunxi-with-spl.bin |