Lets introduce tisdk-bootstrap-image which now consists of a completely bootable system with bootstrap initramfs that can be used to boot up and minimally debug a system. We also will create a rootfs that matches with the initramfs to allow users who use mmc and other similar boot media to have access to the same debug tools for a new platform bringup.
This kind of image is usually suited to be used with a minimal bootloader and kernel devicetree configuration. Signed-off-by: Nishanth Menon <[email protected]> --- .../images/tisdk-bootstrap-image.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb diff --git a/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb new file mode 100644 index 000000000000..85584f0cf257 --- /dev/null +++ b/meta-arago-distro/recipes-core/images/tisdk-bootstrap-image.bb @@ -0,0 +1,17 @@ +# Arago TI SDK bootstrap image usable for board bringup +# This consists of an usable initramfs containing board bringup utilities +# that can then be used. In addition the root filesystem also has the same +# set of utilities for debug and basic performance checks. + +require arago-tiny-image.inc + +ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL ?= "" + +IMAGE_INSTALL += " \ + packagegroup-arago-bootstrap \ + kernel \ + k3-bootstrap-initrd \ + ${ARAGO_BOOTSTRAP_IMAGE_EXTRA_INSTALL} \ +" + +export IMAGE_BASENAME = "tisdk-bootstrap-image" -- 2.31.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13612): https://lists.yoctoproject.org/g/meta-arago/message/13612 Mute This Topic: https://lists.yoctoproject.org/mt/89653831/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
