1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-04 02:00:04 +00:00

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
This commit is contained in:
Chris Larson
2006-09-07 20:46:06 +00:00
parent 2ca2649935
commit abfc1dbd73
8 changed files with 304 additions and 0 deletions
+24
View File
@@ -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";
};
};