diff options
author | Koen Kooi <koen@openembedded.org> | 2009-11-19 12:50:49 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-11-19 12:50:49 +0100 |
commit | db07c130e6a797ed467ee63f0cfe0471473d94a0 (patch) | |
tree | 5949f064da11e52e7b59ff842abb00211eda4589 | |
parent | 4a87c92ffbb033ceba8ed0210cda486ac6b3d3d9 (diff) |
task-boot: move kernel to rrecommends so it can be uninstalled when providing it outside the rootfs
-rw-r--r-- | recipes/tasks/task-boot.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/tasks/task-boot.bb b/recipes/tasks/task-boot.bb index 1a1b9f25c8..0ce9ee4415 100644 --- a/recipes/tasks/task-boot.bb +++ b/recipes/tasks/task-boot.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Basic task to get a device booting" -PR = "r49" +PR = "r50" inherit task @@ -20,7 +20,6 @@ DEPENDS = "virtual/kernel" # minimal set of packages - needed to boot # RDEPENDS_task-boot = "\ - kernel \ base-files \ base-passwd \ busybox \ @@ -32,5 +31,6 @@ RDEPENDS_task-boot = "\ " RRECOMMENDS_task-boot = "\ + kernel \ ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS} \ " |