From f2e48a04b57e6155888f102efe9749efcb0805af Mon Sep 17 00:00:00 2001 From: Tad Date: Fri, 13 Oct 2023 02:24:25 -0400 Subject: [PATCH] Disable regdb updates Last update broke wireless for Australian users Let's use what is included instead Signed-off-by: Tad --- PrebuiltApps | 2 +- Scripts/Common/Functions.sh | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/PrebuiltApps b/PrebuiltApps index c5d6d226..31c09f84 160000 --- a/PrebuiltApps +++ b/PrebuiltApps @@ -1 +1 @@ -Subproject commit c5d6d226a17337f7e405a08064f8040a03424d88 +Subproject commit 31c09f842b5ec5e97fee8fff885780834cb0bc7b diff --git a/Scripts/Common/Functions.sh b/Scripts/Common/Functions.sh index 88fc3a5a..0de16c0a 100644 --- a/Scripts/Common/Functions.sh +++ b/Scripts/Common/Functions.sh @@ -674,8 +674,9 @@ updateRegDb() { #Latest database cannot be used due to differing flags, only update supported kernels #md5sum Build/*/kernel/*/*/net/wireless/genregdb.awk | sort if echo "d9ef5910b573c634fa7845bb6511ba89 net/wireless/genregdb.awk" | md5sum --check --quiet &>/dev/null; then - cp "$DOS_PATCHES_COMMON/wireless-regdb/db.txt" "net/wireless/db.txt"; - echo "regdb: updated for $1"; + #cp "$DOS_PATCHES_COMMON/wireless-regdb/db.txt" "net/wireless/db.txt"; + #echo "regdb: updated for $1"; + echo "regdb: skipping regdb update for $1"; fi; cd "$DOS_BUILD_BASE"; }