dey-image-installer: fix ZIP installer generation for ccmp1 platforms
The ccmp1 build generates ubifs images for the NAND on the device and vfat and ext4 images for the SD card. This commit reuses the already implemented mechanism to match only ubifs images for the ccmp1 platforms. Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
parent
ea4277e2c9
commit
feab76d675
|
|
@ -1,7 +1,7 @@
|
|||
#
|
||||
# Generate DEY installer ZIP package
|
||||
#
|
||||
# Copyright 2017, Digi International Inc.
|
||||
# Copyright 2017-2022, Digi International Inc.
|
||||
#
|
||||
inherit boot-artifacts
|
||||
|
||||
|
|
@ -19,6 +19,12 @@ FSTYPES_WHITELIST = " \
|
|||
ubifs \
|
||||
"
|
||||
|
||||
FSTYPES_WHITELIST:ccmp1 = " \
|
||||
boot.ubifs \
|
||||
recovery.ubifs \
|
||||
ubifs \
|
||||
"
|
||||
|
||||
generate_installer_zip () {
|
||||
# Get list of files to pack
|
||||
INSTALLER_FILELIST="${DEPLOY_DIR_IMAGE}/install_linux_fw_sd.scr \
|
||||
|
|
|
|||
Loading…
Reference in New Issue