diff options
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; " |