diff options
Diffstat (limited to 'recipes/images/x11-jvm-image.bb')
-rw-r--r-- | recipes/images/x11-jvm-image.bb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/recipes/images/x11-jvm-image.bb b/recipes/images/x11-jvm-image.bb new file mode 100644 index 0000000000..8387112a66 --- /dev/null +++ b/recipes/images/x11-jvm-image.bb @@ -0,0 +1,41 @@ +# KaeilOS X11 image +# plus JVM and OTHER + +ANGSTROM_EXTRA_INSTALL ?= "" +XSERVER ?= "xserver-kdrive-fbdev" + +export IMAGE_BASENAME = "x11-jvm-image" + +DEPENDS = "task-base" + +ADD_JVM = "\ + classpath \ + classpath-common \ + classpath-dev \ + classpath-example \ + classpath-gconf \ + classpath-gtk \ + classpath-tools \ + jamvm \ + cacao " + +ADD_OTHER = "\ + ipkg " + +IMAGE_INSTALL = "\ + ${XSERVER} \ + task-base-extended \ + angstrom-x11-base-depends \ + angstrom-gpe-task-base \ + angstrom-gpe-task-settings \ + ${SPLASH} \ + $(ADD_JVM) \ + $(ADD_OTHER) \ + ${ANGSTROM_EXTRA_INSTALL}" + +IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" + +#zap root password for release images +ROOTFS_POSTPROCESS_COMMAND += '${@base_conditional("DISTRO_TYPE", "release", "zap_root_password; ", "",d)}' + +inherit image |