~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/gen_kselftest_tar.sh

Version: ~ [ linux-6.4-rc3 ] ~ [ linux-6.3.4 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.30 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.113 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.180 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.243 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.283 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.315 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #!/bin/bash
  2 #
  3 # gen_kselftest_tar
  4 # Generate kselftest tarball
  5 # Author: Shuah Khan <shuahkh@osg.samsung.com>
  6 # Copyright (C) 2015 Samsung Electronics Co., Ltd.
  7 
  8 # This software may be freely redistributed under the terms of the GNU
  9 # General Public License (GPLv2).
 10 
 11 # main
 12 main()
 13 {
 14         if [ "$#" -eq 0 ]; then
 15                 echo "$0: Generating default compression gzip"
 16                 copts="cvzf"
 17                 ext=".tar.gz"
 18         else
 19                 case "$1" in
 20                         tar)
 21                                 copts="cvf"
 22                                 ext=".tar"
 23                                 ;;
 24                         targz)
 25                                 copts="cvzf"
 26                                 ext=".tar.gz"
 27                                 ;;
 28                         tarbz2)
 29                                 copts="cvjf"
 30                                 ext=".tar.bz2"
 31                                 ;;
 32                         tarxz)
 33                                 copts="cvJf"
 34                                 ext=".tar.xz"
 35                                 ;;
 36                         *)
 37                         echo "Unknown tarball format $1"
 38                         exit 1
 39                         ;;
 40         esac
 41         fi
 42 
 43         install_dir=./kselftest
 44 
 45 # Run install using INSTALL_KSFT_PATH override to generate install
 46 # directory
 47 ./kselftest_install.sh
 48 tar $copts kselftest${ext} $install_dir
 49 echo "Kselftest archive kselftest${ext} created!"
 50 
 51 # clean up install directory
 52 rm -rf kselftest
 53 }
 54 
 55 main "$@"

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | Wiki (Japanese) | Wiki (English) | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

osdn.jp