summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Peng <robinpeng@google.com>2022-11-16 07:19:19 +0000
committerRobin Peng <robinpeng@google.com>2022-11-16 09:47:59 +0000
commit4005c481ba999c23fe1630936ecef82affa9ca54 (patch)
treea7dbeb1cfd772581a3a93996ed0f77dc6eee00d8
parent0502019ff854ca17791dbd024c16a636bf728b20 (diff)
downloadbluejay-4005c481ba999c23fe1630936ecef82affa9ca54.tar.gz
update_symbol_list.sh: update bluejay build files
* update_symbol_list_bluejay-aosp.sh for aosp kernel * update_symbol_list_bluejay-staging.sh for staging kernel Bug: 258094229 Change-Id: I2dc89fe0c3df14e3be44f3ae4c91f5e6471dd824 Signed-off-by: Robin Peng <robinpeng@google.com>
-rwxr-xr-xupdate_symbol_list_bluejay-aosp.sh (renamed from update_symbol_list_bluejay.sh)5
-rwxr-xr-xupdate_symbol_list_bluejay-staging.sh10
2 files changed, 14 insertions, 1 deletions
diff --git a/update_symbol_list_bluejay.sh b/update_symbol_list_bluejay-aosp.sh
index 773586f..e529b99 100755
--- a/update_symbol_list_bluejay.sh
+++ b/update_symbol_list_bluejay-aosp.sh
@@ -1,4 +1,7 @@
-# SPDX-License-Identifier: GPL-2.0
#!/bin/bash
+# SPDX-License-Identifier: GPL-2.0
+BUILD_AOSP_KERNEL=1 \
+BUILD_STAGING_KERNEL=0 \
+BUILD_SCRIPT="./build_bluejay.sh" \
DEVICE_KERNEL_BUILD_CONFIG=private/devices/google/bluejay/build.config.bluejay \
private/gs-google/update_symbol_list.sh "$@"
diff --git a/update_symbol_list_bluejay-staging.sh b/update_symbol_list_bluejay-staging.sh
new file mode 100755
index 0000000..a9daba3
--- /dev/null
+++ b/update_symbol_list_bluejay-staging.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-2.0
+BUILD_AOSP_KERNEL=0 \
+BUILD_STAGING_KERNEL=1 \
+GKI_KERNEL_DIR=aosp-staging \
+GKI_KERNEL_REMOTE=partner-common \
+GKI_KERNEL_BRANCH=android13-5.10-pixel-staging-tm-qpr2 \
+BUILD_SCRIPT="./build_bluejay.sh" \
+DEVICE_KERNEL_BUILD_CONFIG=private/devices/google/bluejay/build.config.bluejay \
+private/gs-google/update_symbol_list.sh "$@"