3 # SPDX-License-Identifier: GPL-2.0
5 # Generate kselftest tarball
6 # Author: Shuah Khan <shuahkh@osg.samsung.com>
7 # Copyright (C) 2015 Samsung Electronics Co., Ltd.
12 if [ "$#" -eq 0 ]; then
13 echo "$0: Generating default compression gzip"
35 echo "Unknown tarball format $1"
41 # Create working directory.
43 install_work
="$dest"/kselftest_install
44 install_name
=kselftest
45 install_dir
="$install_work"/"$install_name"
46 mkdir
-p "$install_dir"
48 # Run install using INSTALL_KSFT_PATH override to generate install
50 .
/kselftest_install.sh
"$install_dir"
51 (cd "$install_work"; tar $copts "$dest"/kselftest
${ext} $install_name)
53 # Don't put the message at the actual end as people may be parsing the
54 # "archive created" line in their scripts.
55 echo -e "\nConsider using 'make gen_tar' instead of this script\n"
57 echo "Kselftest archive kselftest${ext} created!"
59 # clean up top-level install work directory
60 rm -rf "$install_work"