mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 13:48:06 +00:00
ba7d6dddc7
Since 2021.07 multiple bugs were introduced that made it impossible to create a bootable target for mvebu. Those issues should be now fixed since 2023.07-rc1. References: #11661 Signed-off-by: Oli Ze <olze@trustserv.de> Reviewed-by: Robert Marko <robimarko@gmail.com> Tested-by: Andre Heider <a.heider@gmail.com> # espressobin-v3-v5-1gb-2cs Signed-off-by: Petr Štetiar <ynezz@true.cz> [facelift]
81 lines
1.7 KiB
Makefile
81 lines
1.7 KiB
Makefile
#
|
|
# Copyright (C) 2016 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_VERSION:=2023.07.02
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_HASH:=6b6a48581c14abb0f95bd87c1af4d740922406d7b801002a9f94727fdde021d5
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=mvebu
|
|
HIDDEN:=1
|
|
endef
|
|
|
|
define U-Boot/clearfog
|
|
NAME:=SolidRun ClearFog A1
|
|
BUILD_DEVICES:=solidrun_clearfog-base-a1 solidrun_clearfog-pro-a1
|
|
BUILD_SUBTARGET:=cortexa9
|
|
UBOOT_IMAGE:=u-boot-with-spl.kwb
|
|
endef
|
|
|
|
define U-Boot/helios4
|
|
NAME:=Kobol Helios 4
|
|
BUILD_DEVICES:=kobol_helios4
|
|
BUILD_SUBTARGET:=cortexa9
|
|
UBOOT_IMAGE:=u-boot-with-spl.kwb
|
|
endef
|
|
|
|
define U-Boot/omnia
|
|
NAME:=Turris Omnia
|
|
BUILD_DEVICES:=cznic_turris-omnia
|
|
BUILD_SUBTARGET:=cortexa9
|
|
UBOOT_CONFIG:=turris_omnia
|
|
UBOOT_IMAGE:=u-boot-with-spl.kwb
|
|
endef
|
|
|
|
define U-Boot/espressobin
|
|
NAME:=Marvell ESPRESSObin
|
|
BUILD_SUBTARGET:=cortexa53
|
|
UBOOT_CONFIG:=mvebu_espressobin-88f3720
|
|
endef
|
|
|
|
define U-Boot/uDPU
|
|
NAME:=Methode uDPU
|
|
BUILD_SUBTARGET:=cortexa53
|
|
endef
|
|
|
|
define U-Boot/eDPU
|
|
NAME:=Methode eDPU
|
|
BUILD_SUBTARGET:=cortexa53
|
|
endef
|
|
|
|
UBOOT_TARGETS:= \
|
|
clearfog \
|
|
helios4 \
|
|
omnia \
|
|
espressobin \
|
|
uDPU \
|
|
eDPU
|
|
|
|
define Package/u-boot/install
|
|
$(if $(findstring cortexa53,$(BUILD_SUBTARGET)),,$(Package/u-boot/install/default))
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(UBOOT_IMAGE)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|