diff --git a/recipes/images/console-base-image.bb b/recipes/images/console-base-image.bb new file mode 100644 index 0000000..9bd5031 --- /dev/null +++ b/recipes/images/console-base-image.bb @@ -0,0 +1,22 @@ +#Angstrom bootstrap image + +IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" + +ANGSTROM_EXTRA_INSTALL ?= "" + +ZZAPSPLASH = ' ${@base_contains("MACHINE_FEATURES", "screen", "psplash-zap", "",d)}' + +DEPENDS = "task-base \ + ${SPLASH} \ + ${ZZAPSPLASH} \ + " + +IMAGE_INSTALL = "task-base \ + ${ANGSTROM_EXTRA_INSTALL} \ + ${SPLASH} \ + ${ZZAPSPLASH} \ + " + +IMAGE_LINGUAS = "" + +inherit image diff --git a/recipes/images/console-image.bb b/recipes/images/console-image.bb new file mode 100644 index 0000000..c3d3f17 --- /dev/null +++ b/recipes/images/console-image.bb @@ -0,0 +1,10 @@ +#Angstrom bootstrap image +require console-base-image.bb + +DEPENDS += "task-base-extended \ + " + +IMAGE_INSTALL += "task-base-extended \ + " + +export IMAGE_BASENAME = "console-image"