omap: rename image for sysupgrade compatibility

for sysupgrade to work we need to change the image name based on dts target name

Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
v19.07.3_mercusys_ac12_duma
Lucian Cristian 6 years ago committed by John Crispin
parent f9af9be8ab
commit 40f66f1431

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/kernel.mk
PKG_VERSION:=2017.01 PKG_VERSION:=2017.01
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_HASH:=6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2 PKG_HASH:=6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2
@ -24,17 +24,17 @@ endef
define U-Boot/omap4_panda define U-Boot/omap4_panda
NAME:=Pandaboard NAME:=Pandaboard
BUILD_DEVICES:=omap4-panda BUILD_DEVICES:=ti_omap4-panda
endef endef
define U-Boot/am335x_boneblack define U-Boot/am335x_boneblack
NAME:=TI AM335x BeagleBone Black NAME:=TI AM335x BeagleBone Black
BUILD_DEVICES:=am335x-boneblack BUILD_DEVICES:=ti_am335x-bone-black
endef endef
define U-Boot/am335x_evm define U-Boot/am335x_evm
NAME:=AM335x EVM NAME:=AM335x EVM
BUILD_DEVICES:=am335x-evm BUILD_DEVICES:=ti_am335x-evm
endef endef
define U-Boot/omap3_overo define U-Boot/omap3_overo
@ -43,7 +43,7 @@ endef
define U-Boot/omap3_beagle define U-Boot/omap3_beagle
NAME:=BeagleBoard NAME:=BeagleBoard
BUILD_DEVICES:=omap3-beagle BUILD_DEVICES:=ti_omap3-beagle
endef endef
UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle am335x_boneblack UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle am335x_boneblack

@ -38,34 +38,34 @@ define Device/Default
KERNEL := kernel-bin KERNEL := kernel-bin
IMAGES := sdcard.img.gz IMAGES := sdcard.img.gz
IMAGE/sdcard.img.gz := omap-sdcard | append-metadata | gzip IMAGE/sdcard.img.gz := omap-sdcard | append-metadata | gzip
SUPPORTED_DEVICES = $$(DEVICE_DTS) SUPPORTED_DEVICES = $(subst _,$(comma),$(1))
endef endef
#uboot-omap-am335x_evm uboot-omap-omap3_beagle uboot-omap-omap3_overo uboot-omap-omap4_panda #uboot-omap-am335x_evm uboot-omap-omap3_beagle uboot-omap-omap3_overo uboot-omap-omap4_panda
define Device/am335x-evm define Device/ti_am335x-evm
DEVICE_TITLE := TI AM335x EVM DEVICE_TITLE := TI AM335x EVM
DEVICE_DTS := am335x-evm DEVICE_DTS := am335x-evm
endef endef
TARGET_DEVICES += am335x-evm TARGET_DEVICES += ti_am335x-evm
define Device/am335x-boneblack define Device/ti_am335x-bone-black
DEVICE_TITLE := TI AM335x BeagleBone Black DEVICE_TITLE := TI AM335x BeagleBone Black
DEVICE_DTS := am335x-boneblack DEVICE_DTS := am335x-boneblack
endef endef
TARGET_DEVICES += am335x-boneblack TARGET_DEVICES += ti_am335x-bone-black
define Device/omap4-panda define Device/ti_omap4-panda
DEVICE_TITLE := OMAP4 TI pandaboard DEVICE_TITLE := OMAP4 TI pandaboard
DEVICE_DTS := omap4-panda DEVICE_DTS := omap4-panda
DEVICE_PACKAGES := kmod-usb-net-smsc95xx DEVICE_PACKAGES := kmod-usb-net-smsc95xx
endef endef
TARGET_DEVICES += omap4-panda TARGET_DEVICES += ti_omap4-panda
define Device/omap3-beagle define Device/ti_omap3-beagle
DEVICE_TITLE := OMAP3 TI beagleboard DEVICE_TITLE := OMAP3 TI beagleboard
DEVICE_DTS := omap3-beagle DEVICE_DTS := omap3-beagle
# beagleboard doesn't have a network interface, support most common usb net # beagleboard doesn't have a network interface, support most common usb net
@ -75,6 +75,6 @@ define Device/omap3-beagle
kmod-usb-net-smsc95xx kmod-usb-net-dm9601-ether kmod-usb-net-smsc95xx kmod-usb-net-dm9601-ether
endef endef
TARGET_DEVICES += omap3-beagle TARGET_DEVICES += ti_omap3-beagle
$(eval $(call BuildImage)) $(eval $(call BuildImage))

Loading…
Cancel
Save