diff options
Diffstat (limited to 'support')
-rwxr-xr-x | support/scripts/make_image.sh | 20 | ||||
-rwxr-xr-x | support/scripts/mk_config_from_xml.sh | 14 |
2 files changed, 26 insertions, 8 deletions
diff --git a/support/scripts/make_image.sh b/support/scripts/make_image.sh index c08e615..348edd5 100755 --- a/support/scripts/make_image.sh +++ b/support/scripts/make_image.sh @@ -7,8 +7,8 @@ # echo "Please execute this program with sudo" # return 1 #fi -LAST_P_VER="5.5" -P_VER_LIST="4.0 5.0 5.5" +LAST_P_VER="6.0" +P_VER_LIST="4.0 5.0 5.5 6.0" if [ "x$TOPDIR" = "x" ] then @@ -88,7 +88,7 @@ else S_PATH=$S_VER fi -INDEX_LOC=http://download.tizen.org/snapshots/tizen/"$P_VER"unified/"$S_PATH"/images/standard/iot-headless-2parts-armv7l-artik530_710/ +INDEX_LOC=http://download.tizen.org/snapshots/tizen/"$P_VER"unified/"$S_PATH"/images/standard/iot-headed-3parts-armv7l-rpi/ echo $INDEX_LOC wget -q -np -nd -P . $INDEX_LOC KS_FILE=`grep ks index.html | sed -e 's/^.\+\"\(tizen-.\+\)\".\+$/\1/'` @@ -97,8 +97,8 @@ rm -f index.html ########## Set varaiables ########## -########## We use artik530 headless ks file because it is the same to rpi3 ########## -KS_LOC=http://download.tizen.org/snapshots/tizen/"$P_VER"unified/"$S_PATH"/images/standard/iot-headless-2parts-armv7l-artik530_710/"$KS_FILE" +########## We use rpi headed ks file because it is the same to artik ########## +KS_LOC=http://download.tizen.org/snapshots/tizen/"$P_VER"unified/"$S_PATH"/images/standard/iot-headed-3parts-armv7l-rpi/"$KS_FILE" DOWNDIR=$TBB_INFO_DL_DIR if [ "x$BUILD_DIR" = "x" ] @@ -141,6 +141,16 @@ if [ $A = "libstdcpp-devel" ] then A="libstdc++-devel" fi +if [ $A = "libsigcpp-devel" ] +then + A="libsigc++-devel" +fi +if [ $A = "libxmlpp-devel" ] +then + A="libsigc++-devel" +fi + + BB_LIST="$BB_LIST""$A""\n" done diff --git a/support/scripts/mk_config_from_xml.sh b/support/scripts/mk_config_from_xml.sh index ffcc369..71bfedf 100755 --- a/support/scripts/mk_config_from_xml.sh +++ b/support/scripts/mk_config_from_xml.sh @@ -1,6 +1,6 @@ #!/bin/bash -LATEST_P_VER="5.5" +LATEST_P_VER="6.0" print_usage() { @@ -149,6 +149,14 @@ then then NAME="GraphicsMagick-cpp-devel" fi + if [ $NAME = "libsigc++-devel" ] + then + NAME="libsigcpp-devel" + fi + if [ $NAME = "libxml++-devel" ] + then + NAME="libxmlpp-devel" + fi if [[ $NAME = *"building-blocks-"* ]] then @@ -171,7 +179,7 @@ then then DESCRIPTION=`echo $line | sed -e 's|<description>[ ]*\(.\+\)</description>|\1|'` echo "help" >> $OUTFILE - echo " $DESCRIPTION" >> $OUTFILE + echo " $DESCRIPTION" | sed -e "s/&/&/" >> $OUTFILE echo "" >> $OUTFILE STATE="search_package_state" continue @@ -180,7 +188,7 @@ then then DESCRIPTION=`echo $line | sed -e 's|<description>[ ]*\(.\+\)$|\1|'` echo "help" >> $OUTFILE - echo " $DESCRIPTION" >> $OUTFILE + echo " $DESCRIPTION" | sed -e "s/&/&/" >> $OUTFILE STATE="cont_description_state" continue else |