3 # hdw - linux ./scripts/Create-Binary
5 # this script is used to create the binary packages
14 all) package=all ; shift 1 ;;
15 -package) package=$2 ; shift 2 ;;
16 -tar-name) tar_name=$2 ; shift 2 ;;
17 -root) my_root=$2 ; shift 2 ;;
19 echo "usage: $0 -package <package> -tar-name <tarname> -root <root>"
25 if [ -z "$package" ] ; then
26 echo "no package specified"
30 # how to call the packaged tar file (no .tar.bz2 ending!)
31 [ -z "$tar_name" ] && tar_name="$package"
33 # get Config & set hdw_home_dir
34 . ./Config && hdw_home_dir=`pwd`
37 [ ! -z "$my_root" ] && hdw_build_dir="$my_root"
39 # create binary directory
40 if [ ! -z "$hdw_arch_opt" ]; then
41 bin_dir=${hdw_arch}-${hdw_arch_opt}
43 bin_dir=${hdw_arch}-generic
45 mkdir -p binaries/$bin_dir
48 if [ "$package" != "all" ] ; then
49 if [ -d ./binaries/$bin_dir/${package} ] ; then
50 echo "$package binary already exists, skipped"
51 echo "(remove ./binaries/$bin_dir/$package to recreate it)"
55 if [ ! -f $hdw_build_dir/var/adm/flists/$package ] ; then
56 echo "package not build (moved flist file?)"
59 echo "creating binary tarball of $package"
60 mkdir -p $hdw_home_dir/binaries/$bin_dir/$package &&
62 # which files do we need? - are we packaging linux?
63 if [ "$package" = "linux" ] ; then
64 fl_file="var/adm/flists/$package*"
66 fl_file="var/adm/flists/$package"
68 cat $fl_file | awk '{ print $2 }' | \
69 tar --no-recursion --use-compress-program=bzip2 \
70 -cf $hdw_home_dir/binaries/$bin_dir/$package/$tar_name.tar.bz2 \
72 cp $hdw_build_dir/var/adm/flists/$package \
73 $hdw_home_dir/binaries/$bin_dir/$package
79 elif [ "$package" = "all" ] ; then
82 for pkg in `ls -A $hdw_build_dir/var/adm/flists | grep -v '.stage1'`; do
83 ./scripts/Create-Binary -package $pkg -root $hdw_build_dir
87 # add 00-dirtree, build in stage1
88 ./scripts/Create-Binary -package 00-dirtree.stage1 -tar-name 00-dirtree
91 echo "created $counter binaries, done"