diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-05-31 17:52:51 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-06-04 13:27:31 +0100 |
commit | cae9a6c9c8cc1991b8e68b0816fc2db22e3ae129 (patch) | |
tree | 64e897bae1d8e17be8a8cbc9cd369e6e813245d3 /meta/recipes-devtools/apt/files/apt.conf | |
parent | fbb498abd98128a196d059175e3fec99eecee7dc (diff) | |
download | poky-cae9a6c9c8cc1991b8e68b0816fc2db22e3ae129.tar.gz |
apt: update to 1.8.2.1
I took the opportunity to rewrite the recipe from scratch; there was just too much baggage in it.
(From OE-Core rev: f058272de9cba188d96940c8c921cf31727fe4d1)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/apt/files/apt.conf')
-rw-r--r-- | meta/recipes-devtools/apt/files/apt.conf | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/meta/recipes-devtools/apt/files/apt.conf b/meta/recipes-devtools/apt/files/apt.conf deleted file mode 100644 index c95a5b07af..0000000000 --- a/meta/recipes-devtools/apt/files/apt.conf +++ /dev/null | |||
@@ -1,42 +0,0 @@ | |||
1 | Dir "${STAGING_DIR_NATIVE}/" | ||
2 | { | ||
3 | State "var/lib/apt/" | ||
4 | { | ||
5 | Lists "#APTCONF#/lists/"; | ||
6 | status "#ROOTFS#/var/lib/dpkg/status"; | ||
7 | }; | ||
8 | Cache "var/cache/apt/" | ||
9 | { | ||
10 | Archives "archives/"; | ||
11 | pkgcache ""; | ||
12 | srcpkgcache ""; | ||
13 | }; | ||
14 | Bin "${STAGING_BINDIR_NATIVE}/" | ||
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 | Etc "#APTCONF#" | ||
25 | { | ||
26 | Preferences "preferences"; | ||
27 | }; | ||
28 | }; | ||
29 | |||
30 | APT | ||
31 | { | ||
32 | Install-Recommends "true"; | ||
33 | Immediate-Configure "false"; | ||
34 | Architecture "i586"; | ||
35 | Get | ||
36 | { | ||
37 | Assume-Yes "true"; | ||
38 | Force-Yes "true" | ||
39 | }; | ||
40 | }; | ||
41 | |||
42 | DPkg::Options {"--root=#ROOTFS#";"--admindir=#ROOTFS#/var/lib/dpkg";"--force-all";"--no-force-overwrite";"--no-debsig"}; | ||