diff options
| author | Alejandro del Castillo <alejandro.delcastillo@ni.com> | 2017-06-15 18:17:27 -0500 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-28 15:52:17 +0100 |
| commit | 445cdafac7ff0a4733a5d678608821feb57bb486 (patch) | |
| tree | 8e1fc25d8d7f270d4e7ee2dd316e1dfb7f881fde /meta/recipes-devtools/opkg | |
| parent | 4dd415ad21a91655d728cfa16f34f2100db5dd3e (diff) | |
| download | poky-445cdafac7ff0a4733a5d678608821feb57bb486.tar.gz | |
opkg: upgrade to v0.3.5
Drop status-conffile.patch, present in 0.3.5.
(From OE-Core rev: 89b8cbfd65ae6c682908da8028d86692926e4d45)
Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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.5.bb (renamed from meta/recipes-devtools/opkg/opkg_0.3.4.bb) | 5 |
2 files changed, 2 insertions, 72 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/status-conffile.patch b/meta/recipes-devtools/opkg/opkg/status-conffile.patch deleted file mode 100644 index 6fc405b2fd..0000000000 --- a/meta/recipes-devtools/opkg/opkg/status-conffile.patch +++ /dev/null | |||
| @@ -1,69 +0,0 @@ | |||
| 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.5.bb index a21fde1cf8..3e511b6bb6 100644 --- a/meta/recipes-devtools/opkg/opkg_0.3.4.bb +++ b/meta/recipes-devtools/opkg/opkg_0.3.5.bb | |||
| @@ -15,11 +15,10 @@ 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 \ | ||
| 19 | " | 18 | " |
| 20 | 19 | ||
| 21 | SRC_URI[md5sum] = "6c52a065499056a196e0b45a27e392de" | 20 | SRC_URI[md5sum] = "d202d09ea0932943071b842626cab13c" |
| 22 | SRC_URI[sha256sum] = "750b900b53b62a9b280b601a196f02da81091eda2f3478c509512aa5a1ec93be" | 21 | SRC_URI[sha256sum] = "734bc21dea11262113fa86b928d09812618b3966f352350cf916a6ae0d343f32" |
| 23 | 22 | ||
| 24 | inherit autotools pkgconfig systemd | 23 | inherit autotools pkgconfig systemd |
| 25 | 24 | ||
