diff options
author | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-25 18:06:26 +0200 |
---|---|---|
committer | Fabien Proriol <fabien.proriol@viavisolutions.com> | 2025-05-26 16:36:52 +0200 |
commit | eb75299b1372a27d6dc3a9bcf7ab85b37744858c (patch) | |
tree | 644a87344e551719255e55b9d6bc2f25c29b9d65 /recipes-core/images | |
parent | 09783505e865bab1626fa70b15ea64c6e782fd4a (diff) |
Diffstat (limited to 'recipes-core/images')
-rw-r--r-- | recipes-core/images/kazoe-image.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes-core/images/kazoe-image.bb b/recipes-core/images/kazoe-image.bb new file mode 100644 index 0000000..e0e1ade --- /dev/null +++ b/recipes-core/images/kazoe-image.bb @@ -0,0 +1,19 @@ +SUMMARY = "KaZoe Image." + +IMAGE_INSTALL = "packagegroup-core-boot ${CORE_IMAGE_EXTRA_INSTALL}" + +IMAGE_LINGUAS = " " + +LICENSE = "MIT" + +inherit core-image + +IMAGE_ROOTFS_SIZE ?= "8192" +IMAGE_ROOTFS_EXTRA_SPACE:append = "${@bb.utils.contains("DISTRO_FEATURES", "systemd", " + 4096", "", d)}" + + +IMAGE_INSTALL += " packagegroups-kazoe " +ROOT_PASSWORD ?= "KaZoe" +inherit extrausers +DEPENDS += " openssl-native " +EXTRA_USERS_PARAMS = "usermod -p '''$(echo ${ROOT_PASSWORD} | openssl passwd -1 -stdin)''' root; " |