diff options
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 000000000..944233c34 --- /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"; + }; +}; |