diff options
author | Lucian Cristian <lucian.cristian@gmail.com> | 2018-07-19 09:48:56 +0300 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-07-30 11:03:02 +0200 |
commit | 40f66f1431b1a6638f05b75952d7b5a94e385e8d (patch) | |
tree | b5878179ab4bd39816e2a8806d438b3a0c194355 /package/boot/uboot-omap | |
parent | f9af9be8abb72838011c206029ee9274ccd8738e (diff) | |
download | upstream-40f66f1431b1a6638f05b75952d7b5a94e385e8d.tar.gz upstream-40f66f1431b1a6638f05b75952d7b5a94e385e8d.tar.bz2 upstream-40f66f1431b1a6638f05b75952d7b5a94e385e8d.zip |
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>
Diffstat (limited to 'package/boot/uboot-omap')
-rw-r--r-- | package/boot/uboot-omap/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/package/boot/uboot-omap/Makefile b/package/boot/uboot-omap/Makefile index 0d5260d121..69f234d182 100644 --- a/package/boot/uboot-omap/Makefile +++ b/package/boot/uboot-omap/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_VERSION:=2017.01 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_HASH:=6c425175f93a4bcf2ec9faf5658ef279633dbd7856a293d95bd1ff516528ecf2 @@ -24,17 +24,17 @@ endef define U-Boot/omap4_panda NAME:=Pandaboard - BUILD_DEVICES:=omap4-panda + BUILD_DEVICES:=ti_omap4-panda endef define U-Boot/am335x_boneblack NAME:=TI AM335x BeagleBone Black - BUILD_DEVICES:=am335x-boneblack + BUILD_DEVICES:=ti_am335x-bone-black endef define U-Boot/am335x_evm NAME:=AM335x EVM - BUILD_DEVICES:=am335x-evm + BUILD_DEVICES:=ti_am335x-evm endef define U-Boot/omap3_overo @@ -43,7 +43,7 @@ endef define U-Boot/omap3_beagle NAME:=BeagleBoard - BUILD_DEVICES:=omap3-beagle + BUILD_DEVICES:=ti_omap3-beagle endef UBOOT_TARGETS:=omap4_panda am335x_evm omap3_overo omap3_beagle am335x_boneblack |