add ${PROJECT_PATH} on path and remove "linux" on name for IDE meta files
authorsunghan <sh924.chang@samsung.com>
Sun, 13 Aug 2017 23:39:58 +0000 (08:39 +0900)
committersunghan <sh924.chang@samsung.com>
Mon, 14 Aug 2017 05:33:51 +0000 (14:33 +0900)
build/configs/artik053/.buildSpec.xml
build/configs/artik053/.debugSpec.xml
build/configs/artik053/.flashSpec.xml
build/configs/qemu/.buildSpec.xml
build/configs/qemu/.flashSpec.xml
build/configs/sidk_s5jt200/.buildSpec.xml
build/configs/sidk_s5jt200/.flashSpec.xml

index b7a8959..a337160 100644 (file)
     <!-- path attribute value must be relative path from project root -->
     <!-- Don't touch command name. IDE use command with name -->
     <commands>
-        <command name="config" command="./configure.sh" path="os/tools" shellcmd="true">
+        <command name="config" command="./configure.sh" path="${PROJECT_PATH}/os/tools" shellcmd="true">
             <param name="buildOption" value="${BOARD}/${BUILD_OPTION}"/>
         </command>
-        <command name="build" command="make" path="os" shellcmd="true">
+        <command name="build" command="make" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="V" value="V=1"/>
         </command>
-        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="os" shellcmd="true" shell="/bin/bash"/>
-        <command name="clean" command="make clean" path="os" shellcmd="true">
+        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="${PROJECT_PATH}/os" shellcmd="true" shell="/bin/bash"/>
+        <command name="clean" command="make clean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="clean" value="clean"/>
         </command>
-        <command name="distclean" command="make distclean" path="os" shellcmd="true">
+        <command name="distclean" command="make distclean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="distclean" value="distclean"/>
         </command>
     </commands>
index 3c6820d..298cabd 100644 (file)
         <!-- path attribute value must be relative path from project root -->
         <!-- usage : openocd -f debug_all.cfg -->
         <options name="scriptfile" type="file" path="${PROJECT_PATH}/build/configs/${BOARD}/tools/openocd" filter="*.cfg"/>
-        <execute name="linux 32 debug" os="linux" bit="32" command="${PROJECT_PATH}/build/configs/${BOARD}/tools/openocd/linux32/openocd">
+        <execute name="debug" os="linux" bit="32" command="${PROJECT_PATH}/build/configs/${BOARD}/tools/openocd/linux32/openocd">
             <params>
                 <param prefix="-s" value="${SCRIPT_PATH}"/>
                 <param prefix="-f" value="${SCRIPT_FILE}"/>
             </params>
         </execute>
-        <execute name="linux 64 debug" os="linux" bit="64" command="${PROJECT_PATH}/build/configs/${BOARD}/tools/openocd/linux64/openocd">
+        <execute name="debug" os="linux" bit="64" command="${PROJECT_PATH}/build/configs/${BOARD}/tools/openocd/linux64/openocd">
             <params>
                 <param prefix="-s" value="${SCRIPT_PATH}"/>
                 <param prefix="-f" value="${SCRIPT_FILE}"/>
index 640fbab..6ffdb58 100644 (file)
@@ -17,7 +17,7 @@
 <flash name="artik053 flash" virtual="false">
     <!-- path attribute value must be relative path from project root -->
     <executors>
-        <execute name="linux flash" path="os" command="make download" os="linux" bit="all"></execute>
+        <execute name="flash" path="${PROJECT_PATH}/os" command="make download" os="linux" bit="all"></execute>
     </executors>
     <options>
         <option>ALL</option>
index a35c04f..471d1d3 100644 (file)
     <!-- path attribute value must be relative path from project root -->
     <!-- Don't touch command name. IDE use command with name -->
     <commands>
-        <command name="config" command="./configure.sh" path="os/tools" shellcmd="true">
+        <command name="config" command="./configure.sh" path="${PROJECT_PATH}/os/tools" shellcmd="true">
             <param name="buildOption" value="${BOARD}/${BUILD_OPTION}"/>
         </command>
-        <command name="build" command="make" path="os" shellcmd="true">
+        <command name="build" command="make" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="V" value="V=1"/>
         </command>
-        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="os" shellcmd="true" shell="/bin/bash"/>
-        <command name="clean" command="make clean" path="os" shellcmd="true">
+        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="${PROJECT_PATH}/os" shellcmd="true" shell="/bin/bash"/>
+        <command name="clean" command="make clean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="clean" value="clean"/>
         </command>
-        <command name="distclean" command="make distclean" path="os" shellcmd="true">
+        <command name="distclean" command="make distclean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="distclean" value="distclean"/>
         </command>
     </commands>
index e486705..0be052c 100644 (file)
@@ -17,6 +17,6 @@
 <flash name="qemu emulation" virtual="false">
     <!-- path attribute value must be relative path from project root -->
     <executors>
-        <execute name="linux flash" path="os" command="make download" os="linux" bit="all"></execute>
+        <execute name="flash" path="${PROJECT_PATH}/os" command="make download" os="linux" bit="all"></execute>
     </executors>
 </flash>
index 6a82e6a..d53a61a 100644 (file)
     <!-- path attribute value must be relative path from project root -->
     <!-- Don't touch command name. IDE use command with name -->
     <commands>
-        <command name="config" command="./configure.sh" path="os/tools" shellcmd="true">
+        <command name="config" command="./configure.sh" path="${PROJECT_PATH}/os/tools" shellcmd="true">
             <param name="buildOption" value="${BOARD}/${BUILD_OPTION}"/>
         </command>
-        <command name="build" command="make" path="os" shellcmd="true">
+        <command name="build" command="make" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="V" value="V=1"/>
         </command>
-        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="os" shellcmd="true" shell="/bin/bash"/>
-        <command name="clean" command="make clean" path="os" shellcmd="true">
+        <command name="buildWithToolchain" command=". ./setenv.sh ${TOOLCHAIN_PATH};make V=1" path="${PROJECT_PATH}/os" shellcmd="true" shell="/bin/bash"/>
+        <command name="clean" command="make clean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="clean" value="clean"/>
         </command>
-        <command name="distclean" command="make distclean" path="os" shellcmd="true">
+        <command name="distclean" command="make distclean" path="${PROJECT_PATH}/os" shellcmd="true">
             <param name="distclean" value="distclean"/>
         </command>
     </commands>
index eaf0714..553ccb3 100644 (file)
@@ -17,7 +17,7 @@
 <flash name="sidk_s5jt200 flash" virtual="false">
     <!-- path attribute value must be relative path from project root -->
     <executors>
-        <execute name="linux flash" path="os" command="make download" os="linux" bit="all"></execute>
+        <execute name="flash" path="${PROJECT_PATH}/os" command="make download" os="linux" bit="all"></execute>
     </executors>
     <options>
         <option>ALL</option>