~asac/live-build/virtual-hdd-mtab-hack

« back to all changes in this revision

Viewing changes to helpers/lh_binary_tar

  • Committer: Daniel Baumann
  • Date: 2009-11-22 13:38:00 UTC
  • Revision ID: git-v1:a62f12110b19a52a58d7eae871012202cfa16055
Renaming categories to archive areas (Closes: #519690).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
# lh_binary_tar(1) - build harddisk binary image
 
4
# Copyright (C) 2006-2009 Daniel Baumann <daniel@debian.org>
 
5
#
 
6
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
 
7
# This is free software, and you are welcome to redistribute it
 
8
# under certain conditions; see COPYING for details.
 
9
 
 
10
set -e
 
11
 
 
12
# Including common functions
 
13
. "${LH_BASE:-/usr/share/live-helper}"/functions.sh
 
14
 
 
15
# Setting static variables
 
16
DESCRIPTION="$(Echo 'build harddisk binary image')"
 
17
HELP=""
 
18
USAGE="${PROGRAM} [--force]"
 
19
 
 
20
Arguments "${@}"
 
21
 
 
22
# Reading configuration files
 
23
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
 
24
Set_defaults
 
25
 
 
26
if ! In_list tar "${LH_BINARY_IMAGES}"
 
27
then
 
28
        exit 0
 
29
fi
 
30
 
 
31
Echo_message "Begin building binary harddisk image..."
 
32
 
 
33
# Requiring stage file
 
34
Require_stagefile .stage/config .stage/bootstrap
 
35
 
 
36
# Checking stage file
 
37
Check_stagefile .stage/binary_tar
 
38
 
 
39
# Checking lock file
 
40
Check_lockfile .lock
 
41
 
 
42
# Creating lock file
 
43
Create_lockfile .lock
 
44
 
 
45
# Remove old binary
 
46
rm -f binary.tar.gz
 
47
 
 
48
tar cf binary-tar.tar binary
 
49
gzip ${GZIP_OPTIONS} binary-tar.tar
 
50
 
 
51
# Creating stage file
 
52
Create_stagefile .stage/binary_tar