diff options
author | Chris Larson <kergoth@openedhand.com> | 2006-09-07 20:46:06 +0000 |
---|---|---|
committer | Chris Larson <kergoth@openedhand.com> | 2006-09-07 20:46:06 +0000 |
commit | abfc1dbd73d59344564e7cc00754a259d2f2bc85 (patch) | |
tree | 6a24874055c7dc6bb6721d369764db479729c592 /meta/packages/apt/files | |
parent | 2ca2649935540acd6e160f82ddd074b04dfea924 (diff) | |
download | openembedded-core-abfc1dbd73d59344564e7cc00754a259d2f2bc85.tar.gz openembedded-core-abfc1dbd73d59344564e7cc00754a259d2f2bc85.tar.bz2 openembedded-core-abfc1dbd73d59344564e7cc00754a259d2f2bc85.zip |
Add apt & apt-native, including the generation of the apt.conf to be used for the rootfs population.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@699 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/apt/files')
-rw-r--r-- | meta/packages/apt/files/apt.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/packages/apt/files/apt.conf b/meta/packages/apt/files/apt.conf new file mode 100644 index 0000000000..944233c347 --- /dev/null +++ b/meta/packages/apt/files/apt.conf @@ -0,0 +1,24 @@ +Dir "${STAGING_DIR}/" +{ + State "var/lib/apt/" + { + Lists "lists/"; + status "${IMAGE_ROOTFS}/${localstatedir}/lib/dpkg/status"; + }; + Cache "var/cache/apt/" + { + Archives "archives/"; + pkgcache ""; + srcpkgcache ""; + }; + Bin "${STAGING_BINDIR}/" + { + methods "${STAGING_LIBDIR}/apt/methods/"; + gzip "/bin/gzip"; + dpkg "dpkg"; + dpkg-source "dpkg-source"; + dpkg-buildpackage "dpkg-buildpackage"; + apt-get "apt-get"; + apt-cache "apt-cache"; + }; +}; |