diff options
author | Koen Kooi <koen@openembedded.org> | 2006-10-03 17:46:36 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-10-03 17:46:36 +0000 |
commit | 4b7d466fa0ed0f88f14dd381d4e00276fa3ae83e (patch) | |
tree | bd4abece3ae69cf710b48b18f22f766518441ce9 /packages/apt/files | |
parent | dac73415c1d8a09ab1c085b62c566496dc2b1711 (diff) |
apt: sync with poky
Diffstat (limited to 'packages/apt/files')
-rw-r--r-- | packages/apt/files/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/apt/files/apt.conf | 38 |
2 files changed, 38 insertions, 0 deletions
diff --git a/packages/apt/files/.mtn2git_empty b/packages/apt/files/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/apt/files/.mtn2git_empty diff --git a/packages/apt/files/apt.conf b/packages/apt/files/apt.conf new file mode 100644 index 0000000000..37785871db --- /dev/null +++ b/packages/apt/files/apt.conf @@ -0,0 +1,38 @@ +Dir "${STAGING_DIR}/" +{ + State "var/lib/apt/" + { + Lists "lists/"; + status "${IMAGE_ROOTFS}/var/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"; + }; +}; + +APT +{ + Immediate-Configure "false"; + Architecture "i586"; + Get + { + Assume-Yes "true"; + Force-Yes "true" + }; +}; + +DPkg::Options {"--root=${IMAGE_ROOTFS}";"--admindir=${IMAGE_ROOTFS}/var/dpkg";"--force-all";"--no-debsig"}; +}; |