diff options
-rw-r--r-- | meta/classes/populate_sdk_deb.bbclass | 3 | ||||
-rw-r--r-- | meta/classes/rootfs_deb.bbclass | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/populate_sdk_deb.bbclass b/meta/classes/populate_sdk_deb.bbclass index 6f89dcfa06..f2d0621b66 100644 --- a/meta/classes/populate_sdk_deb.bbclass +++ b/meta/classes/populate_sdk_deb.bbclass | |||
@@ -6,12 +6,13 @@ DEB_SDK_ARCH = "${@[d.getVar('SDK_ARCH', True), "i386"]\ | |||
6 | [d.getVar('SDK_ARCH', True) in \ | 6 | [d.getVar('SDK_ARCH', True) in \ |
7 | ["x86", "i486", "i586", "i686", "pentium"]]}" | 7 | ["x86", "i486", "i586", "i686", "pentium"]]}" |
8 | 8 | ||
9 | do_populate_sdk[lockfiles] += "${WORKDIR}/deb.lock" | 9 | do_populate_sdk[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock" |
10 | 10 | ||
11 | populate_sdk_post_deb () { | 11 | populate_sdk_post_deb () { |
12 | 12 | ||
13 | local target_rootfs=$1 | 13 | local target_rootfs=$1 |
14 | 14 | ||
15 | mkdir -p ${target_rootfs}/etc | ||
15 | tar -cf - -C ${STAGING_ETCDIR_NATIVE} -ps apt | tar -xf - -C ${target_rootfs}/etc | 16 | tar -cf - -C ${STAGING_ETCDIR_NATIVE} -ps apt | tar -xf - -C ${target_rootfs}/etc |
16 | } | 17 | } |
17 | 18 | ||
diff --git a/meta/classes/rootfs_deb.bbclass b/meta/classes/rootfs_deb.bbclass index 750a8ca082..881fdbd980 100644 --- a/meta/classes/rootfs_deb.bbclass +++ b/meta/classes/rootfs_deb.bbclass | |||
@@ -8,7 +8,7 @@ ROOTFS_PKGMANAGE_BOOTSTRAP = "run-postinsts" | |||
8 | do_rootfs[depends] += "dpkg-native:do_populate_sysroot apt-native:do_populate_sysroot" | 8 | do_rootfs[depends] += "dpkg-native:do_populate_sysroot apt-native:do_populate_sysroot" |
9 | do_rootfs[recrdeptask] += "do_package_write_deb" | 9 | do_rootfs[recrdeptask] += "do_package_write_deb" |
10 | 10 | ||
11 | do_rootfs[lockfiles] += "${WORKDIR}/deb.lock" | 11 | do_rootfs[lockfiles] += "${DEPLOY_DIR_DEB}/deb.lock" |
12 | 12 | ||
13 | DEB_POSTPROCESS_COMMANDS = "" | 13 | DEB_POSTPROCESS_COMMANDS = "" |
14 | 14 | ||