]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/performance-audio-sr.git/blobdiff - psdk_cust/pdk_k2g_1_0_1_0_eng/packages/ti/boot/sbl/tools/scripts/AM57xImageGen.sh
PASDK-258:Update PDK eng to 1.0.1.1. Using build number to differentiate PDK eng...
[processor-sdk/performance-audio-sr.git] / psdk_cust / pdk_k2g_1_0_1_0_eng / packages / ti / boot / sbl / tools / scripts / AM57xImageGen.sh
diff --git a/psdk_cust/pdk_k2g_1_0_1_0_eng/packages/ti/boot/sbl/tools/scripts/AM57xImageGen.sh b/psdk_cust/pdk_k2g_1_0_1_0_eng/packages/ti/boot/sbl/tools/scripts/AM57xImageGen.sh
deleted file mode 100644 (file)
index ef8de47..0000000
+++ /dev/null
@@ -1,164 +0,0 @@
-#!/bin/bash
-
-# Device Id for Vayu - 55
-# Device ID & CPU ID should be in sync with SBL. Refer to SBL user guide for values
-export Dev_ID=55
-export MPU_CPU0_ID=0
-export MPU_CPU1_ID=1
-export IPU1_CPU0_ID=2
-export IPU1_CPU1_ID=3
-export IPU1_CPU_SMP_ID=4
-export IPU2_CPU0_ID=5
-export IPU2_CPU1_ID=6
-export IPU2_CPU_SMP_ID=7
-export DSP1_ID=8
-export DSP2_ID=9
-
-export TOOLS_PATH=$PDK_INSTALL_PATH/ti/boot/sbl/tools
-
-if [ -d $BIN_PATH ]
-then
-    echo "$BIN_PATH exists"
-else
-    mkdir $BIN_PATH
-fi
-
-# Define Input file paths; To skip the core leave it blank
-# If the Input file paths are set outside then leave it blank
-if [ -z $App_MPU_CPU0 ]; then
-    export App_MPU_CPU0=
-fi
-if [ -z $App_DSP1 ]; then
-    export App_DSP1=
-fi
-if [ -z $App_DSP2 ]; then
-    export App_DSP2=
-fi
-
-if [ ! -z $App_MPU_CPU0  ]
-then
-    export MPU_CPU0=$MPU_CPU0_ID
-    export image_gen=1
-    export App_MPU_CPU0_RPRC=$App_MPU_CPU0.rprc
-fi
-if [ ! -z $App_MPU_CPU0  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_MPU_CPU0 $App_MPU_CPU0_RPRC
-fi
-
-if [ ! -z $App_MPU_CPU1  ]
-then
-    export MPU_CPU1=$MPU_CPU1_ID
-    export image_gen=1
-    export App_MPU_CPU1_RPRC=$App_MPU_CPU1.rprc
-fi
-if [ ! -z $App_MPU_CPU1  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_MPU_CPU1 $App_MPU_CPU1_RPRC
-fi
-
-if [ ! -z $APP_MPU_SMP  ]
-then
-    export MPU_SMP=$MPU_SMP_ID
-    export image_gen=1
-    export App_MPU_SMP_RPRC=$App_MPU_SMP.rprc
-fi
-if [ ! -z $App_MPU_SMP  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_MPU_SMP $App_MPU_SMP_RPRC
-fi
-
-if [ ! -z $App_IPU1_CPU0  ]
-then
-    export IPU1_CPU0=$IPU1_CPU0_ID
-    export image_gen=1
-    export App_IPU1_CPU0_RPRC=$App_IPU1_CPU0.rprc
-fi
-if [ ! -z $App_IPU1_CPU0  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU1_CPU0 $App_IPU1_CPU0_RPRC
-fi
-
-if [ ! -z $App_IPU1_CPU1  ]
-then
-    export IPU1_CPU1=$IPU1_CPU1_ID
-    export image_gen=1
-    export App_IPU1_CPU1_RPRC=$App_IPU1_CPU1.rprc
-fi
-if [ ! -z $App_IPU1_CPU1  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU1_CPU1 $App_IPU1_CPU1_RPRC
-fi
-
-if [ ! -z $App_IPU1_CPU_SMP  ]
-then
-    export IPU1_CPU_SMP=$IPU1_CPU_SMP_ID
-    export image_gen=1
-    export App_IPU1_CPU_SMP_RPRC=$App_IPU1_CPU_SMP.rprc
-fi
-if [ ! -z $App_IPU1_CPU_SMP  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU1_CPU_SMP $App_IPU1_CPU_SMP_RPRC
-fi
-
-if [ ! -z $App_IPU2_CPU0  ]
-then
-    export IPU2_CPU0=$IPU2_CPU0_ID
-    export image_gen=1
-    export App_IPU2_CPU0_RPRC=$App_IPU2_CPU0.rprc
-fi
-if [ ! -z $App_IPU2_CPU0  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU2_CPU0 $App_IPU2_CPU0_RPRC
-fi
-
-if [ ! -z $App_IPU2_CPU1  ]
-then
-    export IPU2_CPU1=$IPU2_CPU1_ID
-    export image_gen=1
-    export App_IPU2_CPU1_RPRC=$App_IPU2_CPU1.rprc
-fi
-if [ ! -z $App_IPU2_CPU1  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU2_CPU1 $App_IPU2_CPU1_RPRC
-fi
-
-if [ ! -z $App_IPU2_CPU_SMP  ]
-then
-    export IPU2_CPU_SMP=$IPU2_CPU_SMP_ID
-    export image_gen=1
-    export App_IPU2_CPU_SMP_RPRC=$App_IPU2_CPU_SMP.rprc
-fi
-if [ ! -z $App_IPU2_CPU_SMP  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_IPU2_CPU_SMP $App_IPU2_CPU_SMP_RPRC
-fi
-
-if [ ! -z $App_DSP1  ]
-then
-    export DSP1_CPU=$DSP1_ID
-    export image_gen=1
-    export App_DSP1_RPRC=$App_DSP1.rprc
-fi
-if [ ! -z $App_DSP1  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_DSP1 $App_DSP1_RPRC
-fi
-
-if [ ! -z $App_DSP2  ]
-then
-    export DSP2_CPU=$DSP2_ID
-    export image_gen=1
-    export App_DSP2_RPRC=$App_DSP2.rprc
-fi
-if [ ! -z $App_DSP2  ]
-then
-    mono "$TOOLS_PATH/out2rprc/bin/out2rprc.exe" $App_DSP2 $App_DSP2_RPRC
-fi
-
-# ImageGen
-if [ ! -z $image_gen  ]
-then
-    # Gerating MulticoreImage Gen
-    "$TOOLS_PATH/multicoreImageGen/bin/MulticoreImageGen" LE $Dev_ID $BIN_PATH/app $MPU_CPU0 $App_MPU_CPU0_RPRC  $MPU_CPU1 $App_MPU_CPU1_RPRC $MPU_SMP $App_MPU_SMP_RPRC $IPU1_CPU0 $App_IPU1_CPU0_RPRC $IPU1_CPU1 $App_IPU1_CPU1_RPRC $IPU1_CPU_SMP $IPU1_CPU_SMP_RPRC $IPU2_CPU0 $App_IPU2_CPU0_RPRC $IPU2_CPU1 $App_IPU2_CPU1_RPRC $IPU2_CPU_SMP $IPU2_CPU_SMP_RPRC $DSP1_CPU $App_DSP1_RPRC $DSP2_CPU $App_DSP2_RPRC $EVE1_CPU $App_EVE1_RPRC $EVE2_CPU $App_EVE2_RPRC $EVE3_CPU $App_EVE3_RPRC $EVE4_CPU $App_EVE4_RPRC
-fi