diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2009-04-23 23:46:21 +0200 |
---|---|---|
committer | Andrea Adami <andrea.adami@gmail.com> | 2009-04-23 23:49:33 +0200 |
commit | f822ec3f5a0820addc1025a132ae27fa43b11c9f (patch) | |
tree | f5a539dfed9fd46a17d2e23274ccb66f042ae6b2 /recipes/images/console-base-image.bb | |
parent | 9ce2add5af0a4c21a6255b3fd235d99cb9722cf4 (diff) |
console-base-image,console-image,gnuradio-image: readd psplash-zap
- for distros without psplash keep the old behaviour and check 'screen'
Diffstat (limited to 'recipes/images/console-base-image.bb')
-rw-r--r-- | recipes/images/console-base-image.bb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/recipes/images/console-base-image.bb b/recipes/images/console-base-image.bb index 93391c6776..d25a4fc79e 100644 --- a/recipes/images/console-base-image.bb +++ b/recipes/images/console-base-image.bb @@ -4,18 +4,20 @@ IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" ANGSTROM_EXTRA_INSTALL ?= "" -SPLASH ?= ' ${@base_contains("MACHINE_FEATURES", "screen", "psplash-zap", "",d)}' +SPLASH ?= "" +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 - |