summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIsaac J. Manjarres <isaacmanjarres@google.com>2024-02-04 00:12:40 -0800
committerIsaac Manjarres <isaacmanjarres@google.com>2024-02-05 17:37:52 +0000
commite5825a92a0f89999ca8ef83987a3c814cd59032a (patch)
tree8f0fd11f81a72e312082a18845cb5b5c3aac4610
parentebc57ada793f9b5c10cdc034e2ccfdd50200296d (diff)
downloadbuild-e5825a92a0f89999ca8ef83987a3c814cd59032a.tar.gz
build_utils.sh: Fix typos for recovery and charger list variables
The variables pertaining to the recovery and charger lists were not written correctly, so fix them. Bug: 322408856 Bug: 323710246 Change-Id: Ia4d18920c5460a6ab019cb186e9da5cb1dd8835a Signed-off-by: Isaac J. Manjarres <isaacmanjarres@google.com> (cherry picked from commit 8565b2e637df5d0a482426b9aa505c917b9711aa)
-rw-r--r--build_utils.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/build_utils.sh b/build_utils.sh
index 10e8077..9f3c5ed 100644
--- a/build_utils.sh
+++ b/build_utils.sh
@@ -112,8 +112,8 @@ function create_modules_order_lists() {
declare -A module_lists_arr
module_lists_arr["modules.order"]=${modules_list_file}
- module_lists_arr["modules.order.recovery"]=${modules_recoverylist_file}
- module_lists_arr["modules.order.charger"]=${modules_chargerlist_file}
+ module_lists_arr["modules.order.recovery"]=${modules_recovery_list_file}
+ module_lists_arr["modules.order.charger"]=${modules_charger_list_file}
for mod_order_file in ${!module_lists_arr[@]}; do
local mod_list_file=${module_lists_arr[${mod_order_file}]}
@@ -180,8 +180,8 @@ function create_modules_staging() {
local dest_dir=$3/lib/modules/${version}
local dest_stage=$3
local modules_blocklist_file=$4
- local modules_recoverylist_file=$5
- local modules_chargerlist_file=$6
+ local modules_recovery_list_file=$5
+ local modules_charger_list_file=$6
local depmod_flags=$7
rm -rf ${dest_dir}