diff options
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/images/angstrom-console-base-image.bb | 10 | ||||
-rw-r--r-- | recipes/images/console-base-image.bb | 9 |
2 files changed, 3 insertions, 16 deletions
diff --git a/recipes/images/angstrom-console-base-image.bb b/recipes/images/angstrom-console-base-image.bb deleted file mode 100644 index 2fdeecb351..0000000000 --- a/recipes/images/angstrom-console-base-image.bb +++ /dev/null @@ -1,10 +0,0 @@ -require console-base-image.bb - -#Angstrom bootstrap image -ANGSTROM_EXTRA_INSTALL ?= "" - -IMAGE_INSTALL = "task-base \ - ${ANGSTROM_EXTRA_INSTALL} \ - ${SPLASH} \ - ${ZZAPSPLASH} \ - " diff --git a/recipes/images/console-base-image.bb b/recipes/images/console-base-image.bb index 2999d1c9c6..9bd50316b5 100644 --- a/recipes/images/console-base-image.bb +++ b/recipes/images/console-base-image.bb @@ -1,11 +1,8 @@ -# bootstrap image -# -# the Angstrom-specific bits that were originally part of this image -# definition have been moved to angstrom-console-base-image.bb +#Angstrom bootstrap image IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" -IMAGE_EXTRA_INSTALL ?= "" +ANGSTROM_EXTRA_INSTALL ?= "" ZZAPSPLASH = ' ${@base_contains("MACHINE_FEATURES", "screen", "psplash-zap", "",d)}' @@ -15,7 +12,7 @@ DEPENDS = "task-base \ " IMAGE_INSTALL = "task-base \ - ${IMAGE_EXTRA_INSTALL} \ + ${ANGSTROM_EXTRA_INSTALL} \ ${SPLASH} \ ${ZZAPSPLASH} \ " |