diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2010-04-26 05:36:34 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-04-28 18:24:39 +0200 |
commit | 79ec64232942ceec65237ed708b79c2f2ced6d67 (patch) | |
tree | aa07792f549f99ecb991f5d9257aed5db8ccade5 /recipes | |
parent | d7c99b1010c3b1c6af9ac63c5a4b57e61f420d2e (diff) |
image.bbclass: create /etc/device_table from IMAGE_DEVICE_TABLES
Right now when the 'devices' script from initscripts is called the
layout specified in IMAGE_DEVICES_TABLES is lost.
With this change the default behaviour when no IMAGE_DEVICE_TABLES is
specified is to always use files/device_table-minimal.txt
Signed-off-by: Antonio Ospite <ospite@studenti.unina.it>
Signed-off-by: Koen Kooi <koen@openembedded.org>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/initscripts/initscripts_1.0.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/recipes/initscripts/initscripts_1.0.bb b/recipes/initscripts/initscripts_1.0.bb index 2c0689ffc8..43cf347349 100644 --- a/recipes/initscripts/initscripts_1.0.bb +++ b/recipes/initscripts/initscripts_1.0.bb @@ -4,7 +4,7 @@ PRIORITY = "required" DEPENDS = "makedevs" RDEPENDS = "makedevs" LICENSE = "GPL" -PR = "r117" +PR = "r118" SRC_URI = "file://functions \ file://halt \ @@ -35,6 +35,8 @@ SRC_URI = "file://functions \ SRC_URI_append_arm = " file://alignment.sh" +CONFFILES_${PN} += "${sysconfdir}/device_table" + KERNEL_VERSION = "" do_install () { |