You've already forked meta-qcom-extras
mirror of
https://github.com/linux-msm/meta-qcom-extras.git
synced 2026-02-25 13:14:43 -08:00
On some Qualcomm platform, the firmware reside in their own partition, in such situation we can mount this partition automatically at boot. Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
7 lines
216 B
Plaintext
7 lines
216 B
Plaintext
qcom_mount_firmware() {
|
|
mkdir -p ${IMAGE_ROOTFS}/lib/firmware
|
|
echo "LABEL=qcom-firmware /lib/firmware ext4 defaults 0 0" >> ${IMAGE_ROOTFS}/etc/fstab
|
|
}
|
|
|
|
ROOTFS_POSTPROCESS_COMMAND += "qcom_mount_firmware ; "
|