48ed07bc0b
Based on Paul Fertser <fercerpav@gmail.com>'s guidance: Change AUTORELEASE in rules.mk to: ``` AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) ``` then update all affected packages by: ``` for i in $(git grep -l PKG_RELEASE:=.*AUTORELEASE | sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/clean done ``` Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
69 lines
1.5 KiB
Makefile
69 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2013-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=2022.01
|
|
PKG_RELEASE:=5
|
|
|
|
PKG_HASH:=81b4543227db228c03f8a1bf5ddbc813b0bb8f6555ce46064ef721a6fc680413
|
|
|
|
include $(INCLUDE_DIR)/u-boot.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define U-Boot/Default
|
|
BUILD_TARGET:=imx
|
|
UBOOT_IMAGE:=u-boot.imx
|
|
endef
|
|
|
|
define U-Boot/apalis_imx6
|
|
NAME:=Toradex Apalis
|
|
UBOOT_IMAGE:=SPL u-boot.img u-boot-with-spl.imx
|
|
UBOOT_MAKE_FLAGS+=SPL u-boot.img u-boot-with-spl.imx
|
|
BUILD_SUBTARGET:=cortexa9
|
|
BUILD_DEVICES:=toradex_apalis
|
|
endef
|
|
|
|
define U-Boot/mx6cuboxi
|
|
NAME:=SolidRun Cubox-i boards
|
|
UBOOT_IMAGE:=SPL u-boot-dtb.img
|
|
UBOOT_MAKE_FLAGS+=SPL u-boot-dtb.img
|
|
BUILD_SUBTARGET:=cortexa9
|
|
BUILD_DEVICES:=solidrun_cubox-i
|
|
endef
|
|
|
|
define U-Boot/pico-pi-imx7d
|
|
NAME:=TechNexion PICO-PI-IMX7D
|
|
UBOOT_IMAGE:=SPL u-boot-dtb.img
|
|
UBOOT_MAKE_FLAGS+=SPL u-boot-dtb.img
|
|
BUILD_SUBTARGET:=cortexa7
|
|
BUILD_DEVICES:=technexion_imx7d-pico-pi
|
|
endef
|
|
|
|
define U-Boot/wandboard
|
|
NAME:=Wandboard Dual Lite/Quad/Solo
|
|
BUILD_SUBTARGET:=cortexa9
|
|
BUILD_DEVICES:=wandboard_dual
|
|
endef
|
|
|
|
UBOOT_TARGETS := \
|
|
apalis_imx6 \
|
|
mx6cuboxi \
|
|
pico-pi-imx7d \
|
|
wandboard
|
|
|
|
UBOOT_MAKE_FLAGS += u-boot.imx
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
|
|
$(foreach img,$(UBOOT_IMAGE), \
|
|
$(CP) $(PKG_BUILD_DIR)/$(img) $(STAGING_DIR_IMAGE)/$(BUILD_VARIANT)-$(img); \
|
|
)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage/U-Boot))
|