From 24e065f9a8a92576c53399c94b11b29b10a71ade Mon Sep 17 00:00:00 2001 From: Roman Azarenko Date: Wed, 8 Sep 2021 10:58:21 +0200 Subject: [PATCH] iop: remove legacy Open SDK support in genconfig --- iop/scripts/genconfig.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index e38031091..da5288018 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -206,12 +206,6 @@ function genconfig { git remote -v | grep -qE '(git@|ssh://)' && { DEVELOPER=1 - - bcmAllowed=0 - endptAllowed=0 - - git ls-remote git@dev.iopsys.eu:broadcom/bcmcreator.git -q 2>/dev/null && bcmAllowed=1 - git ls-remote git@dev.iopsys.eu:iopsys/endptmngr.git -q 2>/dev/null && endptAllowed=1 } v() { @@ -434,7 +428,7 @@ function genconfig { echo "CONFIG_VERSION_CODE=\"${GIT_TAG}\"" >> .config echo "CONFIG_VERSION_PRODUCT=\"$BOARDTYPE"\" >> .config - # Enable Pckage source tree override if selected + # Enable Package source tree override if selected [ $SRCTREEOVERR -eq 1 ] && echo CONFIG_SRC_TREE_OVERRIDE=y >> .config # developer mode selected ? @@ -442,12 +436,8 @@ function genconfig { if [ $DEVELOPER -eq 1 ]; then # rewrite url to clone with ssh instead of http echo "CONFIG_GITMIRROR_REWRITE=y" >>.config - [ $bcmAllowed -eq 0 ] && echo "CONFIG_BCM_OPEN=y" >> .config - [ $endptAllowed -eq 0 ] && echo "CONFIG_ENDPT_OPEN=y" >> .config else echo "# CONFIG_GITMIRROR_REWRITE is not set" >>.config - echo "CONFIG_BCM_OPEN=y" >> .config - echo "CONFIG_ENDPT_OPEN=y" >> .config fi if [ -n "$BRCM_MAX_JOBS" ]