diff options
Diffstat (limited to 'meta/recipes-devtools/opkg')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg/status-conffile.patch | 69 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg/opkg_0.3.4.bb | 1 |
2 files changed, 70 insertions, 0 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/status-conffile.patch b/meta/recipes-devtools/opkg/opkg/status-conffile.patch new file mode 100644 index 0000000000..6fc405b2fd --- /dev/null +++ b/meta/recipes-devtools/opkg/opkg/status-conffile.patch | |||
@@ -0,0 +1,69 @@ | |||
1 | Upstream-Status: Submitted | ||
2 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
3 | |||
4 | From 086d5083dfe0102368cb7c8ce89b0c06b64ca773 Mon Sep 17 00:00:00 2001 | ||
5 | From: Ross Burton <ross.burton@intel.com> | ||
6 | Date: Tue, 10 Jan 2017 15:24:59 +0000 | ||
7 | Subject: [PATCH 1/2] opkg_cmd: only look at conffile status if we're going to | ||
8 | output it | ||
9 | |||
10 | The loop to compare the recorded conffile hash with their hash on disk is | ||
11 | outputted at level INFO but the loop was executed at level NOTICE and higher. | ||
12 | |||
13 | This means that if a conffile had been deleted the status operation would | ||
14 | produce error messages for output it isn't displaying. | ||
15 | |||
16 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
17 | --- | ||
18 | libopkg/opkg_cmd.c | 2 +- | ||
19 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
20 | |||
21 | diff --git a/libopkg/opkg_cmd.c b/libopkg/opkg_cmd.c | ||
22 | index ba57c6a..37416fd 100644 | ||
23 | --- a/libopkg/opkg_cmd.c | ||
24 | +++ b/libopkg/opkg_cmd.c | ||
25 | @@ -638,7 +638,7 @@ static int opkg_info_status_cmd(int argc, char **argv, int installed_only) | ||
26 | |||
27 | pkg_formatted_info(stdout, pkg); | ||
28 | |||
29 | - if (opkg_config->verbosity >= NOTICE) { | ||
30 | + if (opkg_config->verbosity >= INFO) { | ||
31 | conffile_list_elt_t *iter; | ||
32 | for (iter = nv_pair_list_first(&pkg->conffiles); iter; | ||
33 | iter = nv_pair_list_next(&pkg->conffiles, iter)) { | ||
34 | -- | ||
35 | 2.8.1 | ||
36 | |||
37 | From 225e30e0f9fa7cfeaa3f89e2713e5147ab371def Mon Sep 17 00:00:00 2001 | ||
38 | From: Ross Burton <ross.burton@intel.com> | ||
39 | Date: Tue, 10 Jan 2017 15:28:47 +0000 | ||
40 | Subject: [PATCH 2/2] conffile: gracefully handle deleted conffiles in | ||
41 | conffile_has_been_modified | ||
42 | |||
43 | Handle conffiles that don't exist gracefully so that instead of showing an error | ||
44 | message from file_md5sum_alloc() a notice that the file has been deleted is | ||
45 | shown instead. | ||
46 | |||
47 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
48 | --- | ||
49 | libopkg/conffile.c | 5 +++++ | ||
50 | 1 file changed, 5 insertions(+) | ||
51 | |||
52 | diff --git a/libopkg/conffile.c b/libopkg/conffile.c | ||
53 | index b2f2469..7b4b87b 100644 | ||
54 | --- a/libopkg/conffile.c | ||
55 | +++ b/libopkg/conffile.c | ||
56 | @@ -51,6 +51,11 @@ int conffile_has_been_modified(conffile_t * conffile) | ||
57 | } | ||
58 | |||
59 | root_filename = root_filename_alloc(filename); | ||
60 | + if (!file_exists(root_filename)) { | ||
61 | + opkg_msg(INFO, "Conffile %s deleted\n", conffile->name); | ||
62 | + free(root_filename); | ||
63 | + return 1; | ||
64 | + } | ||
65 | |||
66 | md5sum = file_md5sum_alloc(root_filename); | ||
67 | |||
68 | -- | ||
69 | 2.8.1 | ||
diff --git a/meta/recipes-devtools/opkg/opkg_0.3.4.bb b/meta/recipes-devtools/opkg/opkg_0.3.4.bb index 5cf2facf01..6ac9438268 100644 --- a/meta/recipes-devtools/opkg/opkg_0.3.4.bb +++ b/meta/recipes-devtools/opkg/opkg_0.3.4.bb | |||
@@ -15,6 +15,7 @@ SRC_URI = "http://downloads.yoctoproject.org/releases/${BPN}/${BPN}-${PV}.tar.gz | |||
15 | file://opkg-configure.service \ | 15 | file://opkg-configure.service \ |
16 | file://opkg.conf \ | 16 | file://opkg.conf \ |
17 | file://0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch \ | 17 | file://0001-opkg_conf-create-opkg.lock-in-run-instead-of-var-run.patch \ |
18 | file://status-conffile.patch \ | ||
18 | " | 19 | " |
19 | 20 | ||
20 | SRC_URI[md5sum] = "6c52a065499056a196e0b45a27e392de" | 21 | SRC_URI[md5sum] = "6c52a065499056a196e0b45a27e392de" |