mirror of
https://github.com/VIKINGYFY/immortalwrt.git
synced 2025-12-16 17:15:26 +00:00
Recently finalized 3 branch bumped to 3.0.1 dropped patches -010-libressl4.patch; integrated at source -999-small-scripts-tar.patch; integrated at source refreshed remaining patches DEPRECATION: Option 'compressed-help' is deprecated - removed. DEPRECATION: Option 'zstd' value 'false' is replaced by 'disabled' Signed-off-by: Paul Donald <newtwen+github@gmail.com> Link: https://github.com/openwrt/openwrt/pull/21093 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
22 lines
667 B
Diff
22 lines
667 B
Diff
From 9918c683fcc2f148328332d58d030ec5750a1473 Mon Sep 17 00:00:00 2001
|
|
From: Paul Spooren <mail@aparcar.org>
|
|
Date: Sat, 19 Feb 2022 17:20:37 +0100
|
|
Subject: [PATCH 1/4] openwrt: move layer db to temp folder
|
|
|
|
Signed-off-by: Paul Spooren <mail@aparcar.org>
|
|
---
|
|
src/database.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/src/database.c
|
|
+++ b/src/database.c
|
|
@@ -1918,7 +1918,7 @@ const char *apk_db_layer_name(int layer)
|
|
{
|
|
switch (layer) {
|
|
case APK_DB_LAYER_ROOT: return "lib/apk/db";
|
|
- case APK_DB_LAYER_UVOL: return "lib/apk/db-uvol";
|
|
+ case APK_DB_LAYER_UVOL: return "tmp/run/uvol/.meta/apk";
|
|
default:
|
|
assert(!"invalid layer");
|
|
return 0;
|