aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch')
-rw-r--r--package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch b/package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch
deleted file mode 100644
index 8af4d4071d..0000000000
--- a/package/system/opkg/patches/240-fix-force-checksum-for-sha256.patch
+++ /dev/null
@@ -1,31 +0,0 @@
---- a/libopkg/opkg_install.c
-+++ b/libopkg/opkg_install.c
-@@ -1364,12 +1364,22 @@ opkg_install_pkg(pkg_t *pkg, int from_up
- file_sha256 = file_sha256sum_alloc(pkg->local_filename);
- if (file_sha256 && strcmp(file_sha256, pkg->sha256sum))
- {
-- opkg_msg(ERROR, "Package %s sha256sum mismatch. "
-- "Either the opkg or the package index are corrupt. "
-- "Try 'opkg update'.\n",
-- pkg->name);
-- free(file_sha256);
-- return -1;
-+ if (!conf->force_checksum)
-+ {
-+ opkg_msg(ERROR,
-+ "Package %s sha256sum mismatch. "
-+ "Either the opkg or the package index are corrupt. "
-+ "Try 'opkg update'.\n",
-+ pkg->name);
-+ free(file_sha256);
-+ return -1;
-+ }
-+ else
-+ {
-+ opkg_msg(NOTICE,
-+ "Ignored %s sha256sum mismatch.\n",
-+ pkg->name);
-+ }
- }
- if (file_sha256)
- free(file_sha256);