Remove "wipe" from recovery and trustfence initramfs
This package is purely vestigial and hasn't been used at all in any of our initramfs images for over 7 years. It was used in the first implementation of the trustfence initramfs (commit4dd7d438af) to securely erase the key used by cryptsetup, but two weeks later, that logic was moved to trustfence-tool (commita8c50c16ea) and "wipe" was no longer needed. However, the package remained in the dependencies of the trustfence initramfs, which were then used as reference for the recovery initramfs, even though this initramfs didn't even need "wipe" to begin with. Removing this package saves 30.8 KiB in the ccimx6ul recovery image. https://onedigi.atlassian.net/browse/DEL-8819 Signed-off-by: Gabriel Valcazar <gabriel.valcazar@digi.com>
This commit is contained in:
parent
a0309c2a39
commit
82a96801de
|
|
@ -12,7 +12,6 @@ PACKAGE_INSTALL = " \
|
||||||
recovery-initramfs \
|
recovery-initramfs \
|
||||||
swupdate \
|
swupdate \
|
||||||
trustfence-tool \
|
trustfence-tool \
|
||||||
wipe \
|
|
||||||
${@bb.utils.contains('DEY_SOC_VENDOR', 'NXP', bb.utils.contains('STORAGE_MEDIA', 'mtd', 'imx-kobs', '', d), '', d)} \
|
${@bb.utils.contains('DEY_SOC_VENDOR', 'NXP', bb.utils.contains('STORAGE_MEDIA', 'mtd', 'imx-kobs', '', d), '', d)} \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,6 @@ RDEPENDS:${PN} = " \
|
||||||
cryptsetup \
|
cryptsetup \
|
||||||
trustfence-tool \
|
trustfence-tool \
|
||||||
util-linux-findfs \
|
util-linux-findfs \
|
||||||
wipe \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue