krikwood: Make Iconnect image use new ubi format style

To flash first time follow instructions in commit:
"kirkwood/dockstar: use ubi(kernel, squashfs, ubifs) images"

Signed-off-by: Wojciech Dubowik <Wojciech.Dubowik@neratec.com>

SVN-Revision: 49370
This commit is contained in:
Luka Perkov
2016-05-10 23:03:43 +00:00
parent e333bd5d3e
commit 0783a42911
2 changed files with 11 additions and 6 deletions
target/linux/kirkwood
base-files/lib/upgrade
image

@ -14,7 +14,8 @@ platform_check_image() {
}
return 0
;;
"dockstar")
"dockstar"|\
"iconnect")
nand_do_platform_check $board $1
return $?
;;
@ -39,7 +40,8 @@ platform_pre_upgrade() {
local board=$(kirkwood_board_name)
case "$board" in
"dockstar")
"dockstar"|\
"iconnect")
nand_do_upgrade $1
;;
esac

@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/image.mk
DEVICE_VARS += DEVICE_DTS KERNEL_SIZE PAGESIZE BLOCKSIZE SUBPAGESIZE KERNEL_IN_UBI
KERNEL_LOADADDR:=0x8000
TARGET_DEVICES = linksys-audi linksys-viper dockstar goflexnet goflexhome
TARGET_DEVICES = linksys-audi linksys-viper dockstar goflexnet goflexhome iconnect
define Device/Default
KERNEL_DEPENDS = $$(wildcard $(DTS_DIR)/$$(DEVICE_DTS).dts)
@ -47,6 +47,12 @@ $(Device/dockstar)
DEVICE_DTS := kirkwood-goflexhome
endef
define Device/iconnect
$(Device/dockstar)
PROFILES := Generic ICONNECT
DEVICE_DTS := kirkwood-iconnect
endef
define Device/linksys-audi
DEVICE_DTS := kirkwood-linksys-audi
PAGESIZE := 512
@ -176,9 +182,6 @@ Image/InstallKernel/Template/Generic=$(call Image/InstallKernel/Template)
Image/BuildKernel/Template/IB62X0=$(call Image/BuildKernel/Template,ib62x0)
Image/InstallKernel/Template/IB62X0=$(call Image/InstallKernel/Template,ib62x0)
Image/BuildKernel/Template/ICONNECT=$(call Image/BuildKernel/Template,iconnect)
Image/InstallKernel/Template/ICONNECT=$(call Image/InstallKernel/Template,iconnect)
Image/BuildKernel/Template/IOMEGA_IX2_200=$(call Image/BuildKernel/Template,iomega_ix2_200)
Image/InstallKernel/Template/IOMEGA_IX2_200=$(call Image/InstallKernel/Template,iomega_ix2_200)