From 183ac8d1234bd547831aea02131253659e78acf6 Mon Sep 17 00:00:00 2001 From: Ajayswar S Date: Thu, 5 Jun 2025 04:25:06 +0000 Subject: [PATCH] Update build.sh --- acs-drv/files/build.sh | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/acs-drv/files/build.sh b/acs-drv/files/build.sh index 03a522a..55c5e32 100755 --- a/acs-drv/files/build.sh +++ b/acs-drv/files/build.sh @@ -131,14 +131,11 @@ get_bsa_acs() if [[ -d "$WRK_DIR/bsa-acs" ]]; then echo "Directory '$WRK_DIR/bsa-acs' already exists. Skipping clone." else - git clone https://github.com/ajayswar-s/bsa-acs.git bsa-acs + git clone https://github.com/ARM-software/bsa-acs.git bsa-acs if [[ $? -ne 0 ]]; then echo "ERROR: Failed to download BSA ACS repository." return fi - pushd $WRK_DIR/bsa-acs - git checkout linux_porting - popd fi } @@ -149,7 +146,7 @@ get_sbsa_acs() if [[ -d "$WRK_DIR/sbsa-acs" ]]; then echo "Directory '$WRK_DIR/sbsa-acs' already exists. Skipping clone." else - git clone https://github.com/ajayswar-s/sbsa-acs.git sbsa-acs + git clone git@github.com:ARM-software/sbsa-acs.git sbsa-acs if [[ $? -ne 0 ]]; then echo "ERROR: Failed to download SBSA ACS repository." return @@ -170,9 +167,6 @@ get_linux_acs() echo "ERROR: Failed to download LINUX ACS repository." return fi - pushd $WRK_DIR/linux-acs - git checkout linux_porting - popd fi } -- GitLab