Remove unused packaging scripts

Change-Id: I609391b905810eb24f7fd4ea6d7f27166ca001b3


[ROCm/clr commit: 714dd99e2d]
Este commit está contenido en:
Maneesh Gupta
2017-04-04 08:07:56 +05:30
padre 14c38df500
commit 82965fb2d6
@@ -1,23 +0,0 @@
#!/bin/bash
function die {
echo "${1-Died}." >&2
exit 1
}
payload=$1
script=$2
[ "$payload" != "" ] || [ "$script" != "" ] || die "Invalid arguments!"
tmp=__extract__$RANDOM
printf "#!/bin/bash
samples_dir=\$1
[ \"\$samples_dir\" != \"\" ] || read -e -p \"Enter the path to extract the HIP samples: \" samples_dir
mkdir -p \$samples_dir
PAYLOAD=\`awk '/^__PAYLOAD_BELOW__/ {print NR + 1; exit 0; }' \$0\`
tail -n+\$PAYLOAD \$0 | tar -xz -C \$samples_dir
echo \"HIP samples installed in \$samples_dir\"
exit 0
__PAYLOAD_BELOW__\n" > "$tmp"
cat "$tmp" "$payload" > "$script" && rm "$tmp"
chmod +x "$script"