Currently we have tisdk-tiny-image tisdk-base-image and tisdk-default-image which serve certain purpose for the users.
However, These are either too heavy or too pointed towards validation. Hence, let us introduce a basic thinlinux image that has the basic system configured for out of box container usage without changing the meaning of existing image content definitions. Signed-off-by: Nishanth Menon <[email protected]> --- NOTE: https://git.yoctoproject.org/meta-arago/commit/?h=dunfell&id=18b28d0b3a2c1ac3ea6e6149496140a2110e7729 https://git.yoctoproject.org/meta-arago/commit/?h=dunfell&id=55b210e146a5dfcb1a1eca5cad6ea8fab79a5099 https://git.yoctoproject.org/meta-arago/commit/?h=dunfell&id=189de1b80876af739dde88315f5da5b59bc084e1 Now introduces a regression in the sense that 8.1 release that used to support docker out of box (in base,default images) unfortunately do not anymore. Instead users need to mandatorily use a packagefeed to get docker enabled. This image configuration helps restore that image support. .../images/tisdk-thinlinux-image.bb | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb diff --git a/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb new file mode 100644 index 00000000..c60efb5d --- /dev/null +++ b/meta-arago-distro/recipes-core/images/tisdk-thinlinux-image.bb @@ -0,0 +1,25 @@ +# Arago TI Thin Linux image +# Minimal bootable image with container to start the next complex system up. + +require arago-image.inc + +SPLASH = "${@bb.utils.contains('MACHINE_FEATURES','gpu','psplash','',d)}" + +# Allow users to tack on additional packages as interesting. +ARAGO_THIN_IMAGE_EXTRA_INSTALL ?= "" + +IMAGE_INSTALL += "\ + packagegroup-arago-base \ + packagegroup-arago-console \ + packagegroup-arago-base-tisdk \ + ${@bb.utils.contains('MACHINE_FEATURES','gpu','packagegroup-arago-tisdk-graphics','',d)} \ + docker \ + ${ARAGO_THIN_IMAGE_EXTRA_INSTALL} \ +" + +export IMAGE_BASENAME = "tisdk-thin-image" + +# Disable ubi/ubifs as the filesystem requires more space than is +# available on the HW. +IMAGE_FSTYPES_remove_keystone = "ubifs ubi" +IMAGE_FSTYPES_remove_omapl138 = "ubifs ubi" -- 2.17.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#13604): https://lists.yoctoproject.org/g/meta-arago/message/13604 Mute This Topic: https://lists.yoctoproject.org/mt/89638349/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
