32 lines
984 B
Plaintext
32 lines
984 B
Plaintext
# Copyright (C) 2015 Digi International
|
|
|
|
FILESEXTRAPATHS_prepend := "${THISDIR}/${BPN}:"
|
|
|
|
SRC_URI += " \
|
|
file://fw_env.config \
|
|
file://0001-tools-env-implement-support-for-environment-encrypti.patch \
|
|
"
|
|
SRC_URI_append_ccimx6 = " file://0002-fw_env-add-support-to-unlock-emmc-boot-partition.patch"
|
|
|
|
# We do not have a platform defconfig in this version of u-boot, so just use the generic
|
|
# sandbox defconfig, which is enough to build the Linux user-space tool (fw_printenv)
|
|
UBOOT_CONFIG = "sandbox"
|
|
UBOOT_CONFIG[sandbox] = "sandbox_defconfig"
|
|
|
|
do_install_append() {
|
|
install -m 0644 ${WORKDIR}/fw_env.config ${D}${sysconfdir}/
|
|
}
|
|
|
|
pkg_postinst_${PN}_ccimx6() {
|
|
# run the postinst script on first boot
|
|
if [ x"$D" != "x" ]; then
|
|
exit 1
|
|
fi
|
|
MMCDEV="$(sed -ne 's,.*root=/dev/mmcblk\([0-9]\)p.*,\1,g;T;p' /proc/cmdline)"
|
|
if [ -n "${MMCDEV}" ]; then
|
|
sed -i -e "s,^/dev/mmcblk[^[:blank:]]\+,/dev/mmcblk${MMCDEV},g" /etc/fw_env.config
|
|
fi
|
|
}
|
|
|
|
COMPATIBLE_MACHINE = "(ccimx6$|ccimx6ul)"
|