conf: machine: remove BOOTLOADER_SEEK_OFFSET
This commit removes the BOOTLOADER_SEEK_OFFSER, because it has been moved into the swupdate class and renamed into SWUPDATE_UBOOT_OFFSET. Signed-off-by: Mike Engel <Mike.Engel@digi.com>
This commit is contained in:
parent
e4bb4d69af
commit
56219a7e59
|
|
@ -26,8 +26,6 @@ UBOOT_CONFIG ??= "ccimx6qpsbc1GB ccimx6qpsbc2GB"
|
|||
UBOOT_CONFIG[ccimx6qpsbc1GB] = "ccimx6qpsbc1GB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
||||
UBOOT_CONFIG[ccimx6qpsbc2GB] = "ccimx6qpsbc2GB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
||||
|
||||
BOOTLOADER_SEEK_BOOT = "1"
|
||||
|
||||
KERNEL_DEVICETREE ?= " \
|
||||
imx6qp-ccimx6qpsbc.dtb \
|
||||
imx6qp-ccimx6qpsbc-id160.dtb \
|
||||
|
|
|
|||
|
|
@ -24,8 +24,6 @@ UBOOT_CONFIG[ccimx6qsbc2GB] = "ccimx6qsbc2GB_defconfig,,u-boot-dtb.${UBOOT_SUFFI
|
|||
UBOOT_CONFIG[ccimx6qsbc512MB] = "ccimx6qsbc512MB_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
||||
UBOOT_CONFIG[ccimx6qsbc] = "ccimx6qsbc_defconfig,,u-boot-dtb.${UBOOT_SUFFIX}"
|
||||
|
||||
BOOTLOADER_SEEK_BOOT = "1"
|
||||
|
||||
KERNEL_DEVICETREE ?= " \
|
||||
imx6dl-ccimx6sbc.dtb \
|
||||
imx6dl-ccimx6sbc-w.dtb \
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ MACHINEOVERRIDES =. "mx8:mx8m:mx8mm:${DIGI_FAMILY}:${DIGI_SOM}:"
|
|||
include conf/machine/include/ccimx8m.inc
|
||||
|
||||
BOOTLOADER_SEEK_USERDATA = "33"
|
||||
BOOTLOADER_SEEK_BOOT = "0"
|
||||
|
||||
# U-Boot configurations
|
||||
#
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@ MACHINEOVERRIDES =. "mx8:mx8m:mx8mn:${DIGI_FAMILY}:${DIGI_SOM}:"
|
|||
include conf/machine/include/ccimx8m.inc
|
||||
|
||||
BOOTLOADER_SEEK_USERDATA = "32"
|
||||
BOOTLOADER_SEEK_BOOT = "0"
|
||||
|
||||
# U-Boot configurations
|
||||
#
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ UBOOT_CONFIG[ccimx93-dvk] = "ccimx93-dvk_defconfig"
|
|||
UBOOT_DTB_NAME = "ccimx93-dvk.dtb"
|
||||
|
||||
BOOTLOADER_SEEK_USERDATA = "32"
|
||||
BOOTLOADER_SEEK_BOOT = "0"
|
||||
|
||||
KERNEL_DEVICETREE ?= " \
|
||||
digi/ccimx93-dvk.dtb \
|
||||
|
|
|
|||
|
|
@ -18,8 +18,6 @@ EXTRA_IMAGEDEPENDS += "imx-boot"
|
|||
BOOTLOADER_IMAGE_RECIPE = "imx-boot"
|
||||
# BOOTLOADER_SEEK_USERDATA is 33 for step A of the silicon and 32 for step B
|
||||
BOOTLOADER_SEEK_USERDATA = "32"
|
||||
# BOOTLOADER_SEEK_BOOT is 32 for step B of silicon and 0 for step C
|
||||
BOOTLOADER_SEEK_BOOT ?= "0"
|
||||
BOOTABLE_FILENAME = "${UBOOT_PREFIX}-${MACHINE}.bin"
|
||||
SDIMG_BOOTLOADER = "${DEPLOY_DIR_IMAGE}/${BOOTABLE_FILENAME}"
|
||||
|
||||
|
|
|
|||
|
|
@ -80,6 +80,3 @@ UBOOT_ENV = "${@bb.utils.contains('TRUSTFENCE_FIT_IMG', '1', 'boot', '', d)}"
|
|||
# Partitions to blacklist for swupdate:
|
||||
# fsbl1, fsbl2, metadata1, metadata2, fip-a, fip-b
|
||||
SWUPDATE_MTD_BLACKLIST = "0 1 2 3 4 5"
|
||||
|
||||
# Bootloader Flash offset
|
||||
BOOTLOADER_SEEK_BOOT = "0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue