diff options
author | Mike Westerhof <mwester@dls.net> | 2010-05-08 23:25:25 -0500 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2010-05-08 23:25:25 -0500 |
commit | e349daff3e0aa4e1296f908b25ace435e519ccea (patch) | |
tree | bcda18ff3e519eb239aa3e2bd02e0793316b271c | |
parent | 41b89aff6541bbf872466480eb14b65b6a291051 (diff) |
SlugOS: initscripts-slugos - "unset" CONFFILES in order to avoid
an opkg problem during rootfs creation caused by existing
/etc/device_table file.
-rw-r--r-- | recipes/initscripts/initscripts-slugos_1.0.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes/initscripts/initscripts-slugos_1.0.bb b/recipes/initscripts/initscripts-slugos_1.0.bb index 1530d04733..43153c060d 100644 --- a/recipes/initscripts/initscripts-slugos_1.0.bb +++ b/recipes/initscripts/initscripts-slugos_1.0.bb @@ -17,7 +17,11 @@ RDEPENDS = "update-rc.d" # All other standard definitions inherited from initscripts # Except the PR which is hacked here. The format used is # a suffix -PR := "${PR}.22" +PR := "${PR}.23" + +# Avoid a clash on /etc/device_table by ensuring that it gets removed +# from the list of configuration files handled specially by opkg. +CONFFILES_${PN} = "" # We wish to search the same file paths as does the initscripts recipe. FILESPATHPKG = "initscripts-${PV}:initscripts:files" |