2017-09-13 18:51:23 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2016 Microchip Technology Inc.
|
|
|
|
# <Sandeepsheriker.mallikarjun@microchip.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=at91bootstrap
|
2022-06-29 11:13:27 +00:00
|
|
|
PKG_VERSION:=v4.0.3
|
|
|
|
PKG_MIRROR_HASH:=1ecdc31a13350fcdcaa3f77ed8ad73906f79fc668dbb2f337e1d5dd877bf9882
|
|
|
|
PKG_SOURCE_VERSION:=1d9e673698d9db4a4f2301559f481274de2e75ae
|
2022-02-04 13:24:55 +00:00
|
|
|
BINARIES_DIR:=build/binaries
|
2023-09-24 18:16:21 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:linux4sam:at91bootstrap
|
2022-02-04 13:24:55 +00:00
|
|
|
|
|
|
|
AT91BOOTSTRAP_V4=y
|
|
|
|
ifdef CONFIG_PACKAGE_at91bootstrap-sama5d4_xplaineddf_uboot_secure
|
|
|
|
AT91BOOTSTRAP_V4=n
|
|
|
|
else ifdef CONFIG_TARGET_at91_sam9x
|
|
|
|
ifndef CONFIG_TARGET_at91_sam9x_DEVICE_microchip_sam9x60ek
|
|
|
|
AT91BOOTSTRAP_V4=n
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(AT91BOOTSTRAP_V4),n)
|
|
|
|
PKG_VERSION=v3.10.4
|
|
|
|
PKG_MIRROR_HASH=6fe61fe90838e785917383bb9e887fa05e1bd061a6725954242f504e38b5c426
|
|
|
|
PKG_SOURCE_VERSION=404846dd283894367a015ca59189bcf927d92e11
|
|
|
|
BINARIES_DIR=binaries
|
|
|
|
endif
|
|
|
|
|
2020-08-23 18:15:17 +00:00
|
|
|
PKG_RELEASE:=2
|
2017-09-13 18:51:23 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
|
|
PKG_SOURCE_URL:=https://github.com/linux4sam/at91bootstrap.git
|
|
|
|
PKG_BUILD_DIR = \
|
2020-08-23 20:32:28 +00:00
|
|
|
$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
|
2017-09-13 18:51:23 +00:00
|
|
|
|
|
|
|
include at91bootstrap.mk
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define AT91Bootstrap/Default
|
|
|
|
BUILD_TARGET:=at91
|
2018-01-08 22:41:10 +00:00
|
|
|
HIDDEN:=1
|
2017-09-13 18:51:23 +00:00
|
|
|
AT91BOOTSTRAP_IMAGE:=at91bootstrap.bin
|
|
|
|
endef
|
|
|
|
|
2019-08-14 00:42:14 +00:00
|
|
|
define AT91Bootstrap/at91sam9x5eknf_uboot
|
|
|
|
NAME:=AT91Bootstrap for AT91SAM9X5-EK board (NandFlash)
|
|
|
|
BUILD_SUBTARGET:=sam9x
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=atmel_at91sam9x25ek atmel_at91sam9x35ek
|
2019-08-14 00:42:14 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/at91sam9x5eksd_uboot
|
|
|
|
NAME:=AT91Bootstrap for AT91SAM9X5-EK board (SDcard)
|
|
|
|
BUILD_SUBTARGET:=sam9x
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=atmel_at91sam9x25ek atmel_at91sam9x35ek
|
2019-08-14 00:42:14 +00:00
|
|
|
endef
|
|
|
|
|
2021-10-11 08:47:26 +00:00
|
|
|
define AT91Bootstrap/sam9x60eknf_uboot
|
|
|
|
NAME:=AT91Bootstrap for SAM9X60-EK board (NandFlash)
|
|
|
|
BUILD_SUBTARGET:=sam9x
|
|
|
|
BUILD_DEVICES:=microchip_sam9x60ek
|
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/sam9x60eksd_uboot
|
|
|
|
NAME:=AT91Bootstrap for SAM9X60-EK board (SDcard)
|
|
|
|
BUILD_SUBTARGET:=sam9x
|
|
|
|
BUILD_DEVICES:=microchip_sam9x60ek
|
|
|
|
endef
|
|
|
|
|
2021-10-11 08:47:23 +00:00
|
|
|
define AT91Bootstrap/sama5d2_icpdf_qspi_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 ICP board (QSPI Flash)
|
|
|
|
BUILD_SUBTARGET:=sama5
|
|
|
|
BUILD_DEVICES:=microchip_sama5d2-icp
|
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/sama5d2_icpsd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 ICP board (SDcard)
|
|
|
|
BUILD_SUBTARGET:=sama5
|
|
|
|
BUILD_DEVICES:=microchip_sama5d2-icp
|
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d2_xplaineddf_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SPI Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d2-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d2_xplaineddf_qspi_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (QSPI Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d2-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d2_xplainedsd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 Xplained board (SDcard/EMMC)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d2-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d3_xplainednf_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (Nand Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d3-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d3_xplainedsd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D3 Xplained board (SDcard)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d3-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d4_xplainednf_uboot_secure
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (Nand Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d4-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d4_xplaineddf_uboot_secure
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SPI Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d4-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-01-04 19:47:17 +00:00
|
|
|
define AT91Bootstrap/sama5d4_xplainedsd_uboot_secure
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D4 Xplained board (SDcard)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d4-xplained
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
2018-05-04 17:27:47 +00:00
|
|
|
define AT91Bootstrap/sama5d27_som1_eksd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (SDcard0)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d27-som1-ek
|
2018-05-04 17:27:47 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/sama5d27_som1_ekqspi_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D27 SOM1 Ek (QSPI Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d27-som1-ek
|
2018-05-04 17:27:47 +00:00
|
|
|
endef
|
|
|
|
|
2021-10-11 08:47:24 +00:00
|
|
|
define AT91Bootstrap/sama5d27_wlsom1_eksd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D27 WLSOM1 Ek (SDcard0)
|
|
|
|
BUILD_SUBTARGET:=sama5
|
|
|
|
BUILD_DEVICES:=microchip_sama5d27-wlsom1-ek
|
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/sama5d27_wlsom1_ekdf_qspi_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D27 WLSOM1 Ek (QSPI Flash)
|
|
|
|
BUILD_SUBTARGET:=sama5
|
|
|
|
BUILD_DEVICES:=microchip_sama5d27-wlsom1-ek
|
|
|
|
endef
|
|
|
|
|
2018-05-04 17:27:51 +00:00
|
|
|
define AT91Bootstrap/sama5d2_ptc_eknf_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 PTC EK (Nand Flash)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d2-ptc-ek
|
2018-05-04 17:27:51 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define AT91Bootstrap/sama5d2_ptc_eksd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA5D2 PTC EK (SDCard)
|
2019-05-28 17:21:14 +00:00
|
|
|
BUILD_SUBTARGET:=sama5
|
2020-08-23 18:15:17 +00:00
|
|
|
BUILD_DEVICES:=microchip_sama5d2-ptc-ek
|
2018-05-04 17:27:51 +00:00
|
|
|
endef
|
|
|
|
|
2022-02-04 14:17:03 +00:00
|
|
|
define AT91Bootstrap/sama7g5eksd_uboot
|
|
|
|
TITLE:=AT91Bootstrap for SAMA7G5-EK (SDCard)
|
|
|
|
BUILD_SUBTARGET:=sama7
|
|
|
|
BUILD_DEVICES:=microchip_sama7g5-ek
|
|
|
|
endef
|
|
|
|
|
2017-09-13 18:51:23 +00:00
|
|
|
AT91BOOTSTRAP_TARGETS := \
|
2020-08-23 20:32:28 +00:00
|
|
|
at91sam9x5eknf_uboot \
|
|
|
|
at91sam9x5eksd_uboot \
|
2021-10-11 08:47:26 +00:00
|
|
|
sam9x60eknf_uboot \
|
|
|
|
sam9x60eksd_uboot \
|
2021-10-11 08:47:23 +00:00
|
|
|
sama5d2_icpdf_qspi_uboot \
|
|
|
|
sama5d2_icpsd_uboot \
|
2020-08-23 20:32:28 +00:00
|
|
|
sama5d2_xplaineddf_uboot \
|
|
|
|
sama5d2_xplaineddf_qspi_uboot \
|
|
|
|
sama5d2_xplainedsd_uboot \
|
|
|
|
sama5d3_xplainednf_uboot \
|
|
|
|
sama5d3_xplainedsd_uboot \
|
|
|
|
sama5d4_xplainednf_uboot_secure \
|
|
|
|
sama5d4_xplaineddf_uboot_secure \
|
|
|
|
sama5d4_xplainedsd_uboot_secure \
|
2022-07-28 10:14:59 +00:00
|
|
|
sama5d27_som1_eksd_uboot \
|
2020-08-23 20:32:28 +00:00
|
|
|
sama5d27_som1_ekqspi_uboot \
|
2021-10-11 08:47:24 +00:00
|
|
|
sama5d27_wlsom1_eksd_uboot \
|
|
|
|
sama5d27_wlsom1_ekdf_qspi_uboot \
|
2020-08-23 20:32:28 +00:00
|
|
|
sama5d2_ptc_eknf_uboot \
|
2022-02-04 14:17:03 +00:00
|
|
|
sama5d2_ptc_eksd_uboot \
|
|
|
|
sama7g5eksd_uboot
|
2017-09-13 18:51:23 +00:00
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
|
2020-08-23 20:32:28 +00:00
|
|
|
CROSS_COMPILE=$(TARGET_CROSS)
|
2017-09-13 18:51:23 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage/AT91Bootstrap))
|