Package boot essential modules and some other modules required during boot time, also add initramfs scripts to modprobe the included modules and eventually perform a switch-root.
Signed-off-by: Moteen Shah <[email protected]> --- .../images/tisdk-tiny-initramfs.bb | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/meta-arago-distro/recipes-core/images/tisdk-tiny-initramfs.bb b/meta-arago-distro/recipes-core/images/tisdk-tiny-initramfs.bb index 37b777f6..2316d191 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-tiny-initramfs.bb +++ b/meta-arago-distro/recipes-core/images/tisdk-tiny-initramfs.bb @@ -21,7 +21,23 @@ INITRAMFS_FSTYPES = "cpio cpio.xz" IMAGE_FSTYPES = "${INITRAMFS_FSTYPES}" -PACKAGE_INSTALL = "packagegroup-arago-initramfs" +INITRAMFS_SCRIPTS ?= "initramfs-framework-base initramfs-module-udev initramfs-module-nfsrootfs" + +MODULES = "\ + kernel-module-cdns-pltfrm \ + kernel-module-sdhci-am654 \ + kernel-module-ti-cpsw-proxy-client \ + kernel-module-ti-j721e-ufs \ + kernel-module-tps6594-i2c \ +" + +UTILS = "\ + cifs-utils \ + nfs-utils \ + nfs-utils-client \ +" + +PACKAGE_INSTALL = "${INITRAMFS_SCRIPTS} ${MODULES} ${UTILS} packagegroup-arago-initramfs " export IMAGE_BASENAME = "tisdk-tiny-initramfs${ARAGO_IMAGE_SUFFIX}" -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#16516): https://lists.yoctoproject.org/g/meta-arago/message/16516 Mute This Topic: https://lists.yoctoproject.org/mt/115040608/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
