summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_includes
blob: 18ad540e89ee48c51d45d4292edbe997b0ca305d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#!/bin/sh

# lh_binary_includes(1) - copy files into binary
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
#
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
# This is free software, and you are welcome to redistribute it
# under certain conditions; see COPYING for details.

set -e

# Source common functions
for FUNCTION in /usr/share/live-helper/functions/*.sh
do
	. ${FUNCTION}
done

# Set static variables
DESCRIPTION="copy files into binary"
HELP=""
USAGE="${PROGRAM} [--force]"

Arguments "${@}"

Echo_debug "Init ${PROGRAM}"

# Reading configuration files
Read_conffile config/bootstrap
Read_conffile config/chroot
Read_conffile config/common
Read_conffile config/image
Set_defaults

if [ "${LIVE_INCLUDES}" = "none" ]
then
	exit 0
fi

Breakpoint "binary_includes: Init"

# Requiring stage file
Require_stagefile .stage/bootstrap

# Checking stage file
Check_stagefile .stage/binary_includes

# Checking lock file
Check_lockfile .lock

# Creating lock file
Create_lockfile .lock

# Check includes
if [ ! -d "${LIVE_INCLUDES}" ]
then
	if [ -d ../"${LIVE_INCLUDES}" ]
	then
		LIVE_INCLUDES="../${LIVE_INCLUDES}"
	else
		Echo_error "user specified includes not accessible in ${LIVE_INCLUDES}"
		exit 1
	fi
fi

# Assemble architecture
case "${LIVE_ARCHITECTURE}" in
	amd64)
		ARCH="amd"
		;;

	i386)
		ARCH="386"
		;;

	powerpc)
		ARCH="ppc"
		;;
esac

if [ "${LIVE_DEBIAN_INSTALLER}" = "enabled" ]
then
	# Copying d-i templates
	if [ -d "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install ] && \
	ls "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install/* &> /dev/null
	then
		cp -r "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install/* binary
	fi

	if [ -d "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install."${ARCH}" ] && \
	ls "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install."${ARCH}"/* &> /dev/null
	then
		cp -r "${LIVE_INCLUDES}"/"${LIVE_DISTRIBUTION}"/install."${ARCH}"/* binary
	fi

	# Adjusting d-i templates
	DEBIAN_NAME="/Debian GNU/Linux 4.0 r0 \"Etch\" - Unofficial amd64 NETINST/LIVE Binary-1"
	DEBIAN_DATE="`date +%Y%m%d-%H:%M`"

	if [ "${LIVE_ARCHITECTURE}" = "i386" ]
	then
		DEBIAN_TOOLS_HTML=" <P>\n <tt>&nbsp;\n <A href="tools/">/tools/</a>\n </tt>\n\n and\n <tt>&nbsp;\n <A href="install/floppy/">/install/floppy/</a>\n </tt>"
		DEBIAN_TOOLS_TXT="/tools/ and   /install/floppy/"
	else
		DEBIAN_TOOLS_HTML=" <P>\n <tt>&nbsp;\n <A href="tools/">/tools/</a>\n </tt>\n\n\n\n\n\n"
		DEBIAN_TOOLS_TXT="/tools/"
	fi

	sed -i -e "s/DEBIAN_NAME/${DEBIAN_NAME}/g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s/DEBIAN_TOOLS/${DEBIAN_TOOLS_HTML}/g" binary/README.html
	sed -i -e "s/DEBIAN_NAME/${DEBIAN_NAME}/g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s/DEBIAN_TOOLS/${DEBIAN_TOOLS_TXT}/g" binary/README.txt
fi

# Creating stage file
Create_stagefile .stage/binary_includes