diff --git a/acs-drv/files/build.sh b/acs-drv/files/build.sh index 03a522a8bf54af11a1488921eb44494ddf84411e..55c5e3287599ce31a2d4488e5ac8fa7b5183ceed 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 }