summaryrefslogtreecommitdiffstats
path: root/meta/packages/apt/files
diff options
context:
space:
mode:
authorChris Larson <kergoth@openedhand.com>2006-09-07 20:46:06 +0000
committerChris Larson <kergoth@openedhand.com>2006-09-07 20:46:06 +0000
commitabfc1dbd73d59344564e7cc00754a259d2f2bc85 (patch)
tree6a24874055c7dc6bb6721d369764db479729c592 /meta/packages/apt/files
parent2ca2649935540acd6e160f82ddd074b04dfea924 (diff)
downloadpoky-abfc1dbd73d59344564e7cc00754a259d2f2bc85.tar.gz
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.conf24
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 @@
1Dir "${STAGING_DIR}/"
2{
3 State "var/lib/apt/"
4 {
5 Lists "lists/";
6 status "${IMAGE_ROOTFS}/${localstatedir}/lib/dpkg/status";
7 };
8 Cache "var/cache/apt/"
9 {
10 Archives "archives/";
11 pkgcache "";
12 srcpkgcache "";
13 };
14 Bin "${STAGING_BINDIR}/"
15 {
16 methods "${STAGING_LIBDIR}/apt/methods/";
17 gzip "/bin/gzip";
18 dpkg "dpkg";
19 dpkg-source "dpkg-source";
20 dpkg-buildpackage "dpkg-buildpackage";
21 apt-get "apt-get";
22 apt-cache "apt-cache";
23 };
24};