blob: 2af8abe51fe9339c79b2615004d5d18fa8d6c7fa (
plain) (
blame)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
#!/bin/bash
MODULE_DIR="${ROOT_DIR}/remote"
#Create tools directory if not exists
TOOL_DIR="${MODULE_DIR}/tools"
INIT_DIR="${MODULE_DIR}/stage3.2"
# Keep track of processed modules
PROCESSED_MODULES=""
initial_checks ()
{
for BIN in git locate
do
local TEST=$(which ${BIN})
[ -z "$TEST" ] && pinfo "Installing $BIN..." && apt-get install $BIN
done
}
read_config ()
{
unset REQUIRED_BINARIES
unset REQUIRED_LIBRARIES
unset REQUIRED_DIRECTORIES
unset REQUIRED_FILES
unset REQUIRED_MODULES
unset REQUIRED_PACKAGES
unset REQUIRED_DEPENDENCIES
local TOOL_CONFIG="${TOOL_DIR}/${TOOL}/${TOOL}.conf"
if [ -e "${TOOL_CONFIG}.${PACKET_MANAGER}" ]; then
# a specific tool.conf seems to exist, try to use that one
# TODO: Maybe move this down right after loading the generic one, to allow "overloading".... but might be a bit confusing
. "${TOOL_CONFIG}.${PACKET_MANAGER}" || perror "Sourcing '${TOOL_CONFIG}.${PACKET_MANAGER}' failed."
else
# otherwise, use the generic one
[ ! -e "${TOOL_CONFIG}" ] && perror "Config for '$TOOL' not found."
. "${TOOL_CONFIG}" || perror "Sourcing '${TOOL_CONFIG}' failed."
fi
}
read_build ()
{
local BUILD_SCRIPT="${TOOL_DIR}/${TOOL}/${TOOL}.build"
[ ! -e "${BUILD_SCRIPT}" ] && perror "Build script for specified tool not found."
. "${BUILD_SCRIPT}" || perror "Sourcing '${BUILD_SCRIPT}' failed."
}
copyfileswithdependencies ()
{
[ ! -d build ] && pinfo "No build directory found, skipping dependency copying" && return 0
cd build
COPYFILES_LIST="list_wanted_stage3.2"
[ -e ${COPYFILES_LIST} ] && rm ${COPYFILES_LIST}
[ ! -z "${REQUIRED_BINARIES}" ] && pinfo "Gathering required binaries from config file..."
for FILENAME in ${REQUIRED_BINARIES}
do
local FILE_CANDIDATES=$( find . -name "${FILENAME}" -a \( -type f -o -type l \) )
pdebug "Candidates for $FILENAME are: $FILE_CANDIDATES"
local FINAL_LIST=""
for FILE in $FILE_CANDIDATES; do
local TESTFILE="$(readlink -f "$FILE")"
pdebug " $FILE leads to $TESTFILE"
[ -f "$TESTFILE" -a -x "$TESTFILE" ] && [ "x$(grep -l -E '^(.ELF|#!)' "$TESTFILE")" != "x" ] && FINAL_LIST="$FINAL_LIST $FILE"
done
FINAL_LIST=$(trim "$FINAL_LIST")
pdebug " Final list is $FINAL_LIST"
if [ -z "$FINAL_LIST" ]; then
pwarning "\tNo Binary found for ${FILENAME}. Skipping."
continue
fi
if [[ "$FINAL_LIST" == *" "* ]]; then
pwarning "Found more than one match for required file '$FILENAME': $FINAL_LIST"
else
pdebug "\tFound ${FILENAME} at ${FILE}"
fi
for FILE in $FINAL_LIST; do
get_link_chain "${TOOL_DIR}/${TOOL}/build/${FILE}" "${TOOL_DIR}/${TOOL}/build" >> "${COPYFILES_LIST}"
get_dynamic_dependencies -l "${TOOL_DIR}/${TOOL}/build" "${FILE}" >> "${COPYFILES_LIST}"
done
done
[ ! -z "${REQUIRED_LIBRARIES}" ] && pinfo "Gathering required libraries from config file..."
for LIB in ${REQUIRED_LIBRARIES}
do
for LOCATION in $(find . -name ${LIB}.so\*)
do
pdebug "* $LOCATION"
get_link_chain "${TOOL_DIR}/${TOOL}/build/${LOCATION}" "${TOOL_DIR}/${TOOL}/build" >> "${COPYFILES_LIST}"
get_dynamic_dependencies -l "${TOOL_DIR}/${TOOL}/build" "${LOCATION}" >> "${COPYFILES_LIST}"
done
done
[ ! -z "${REQUIRED_DIRECTORIES}" ] && pinfo "Gathering required directories from config file..."
local CURRENT_PWD=$(pwd) # Prevent calling pwd 50000 times inside the loop below
for ENTRY in ${REQUIRED_DIRECTORIES}
do
pdebug "* ./$ENTRY"
echo "./${ENTRY}" >> "${COPYFILES_LIST}"
for BIN in $(find "./${ENTRY}" -type f -not -name '*.a' | xargs grep -l '^.ELF')
do
pdebug " Searching libs for ${BIN}..."
get_link_chain "${TOOL_DIR}/${TOOL}/build/${BIN}" "${TOOL_DIR}/${TOOL}/build" >> "${COPYFILES_LIST}"
get_dynamic_dependencies -l "${TOOL_DIR}/${TOOL}/build" "${BIN}" >> "${COPYFILES_LIST}"
done
done
[ ! -z "${REQUIRED_FILES}" ] && pinfo "Gathering required files from config file..."
for ENTRY in ${REQUIRED_FILES}
do
get_link_chain "${TOOL_DIR}/${TOOL}/build/${ENTRY}" "${TOOL_DIR}/${TOOL}/build" >> "${COPYFILES_LIST}"
get_dynamic_dependencies -l "${TOOL_DIR}/${TOOL}/build" "${TOOL_DIR}/${TOOL}/build/.${ENTRY}" >> "${COPYFILES_LIST}"
done
#copy to initramfsdir
pdebug "[stage32] Completed file list generation at ${TOOL_DIR}/${TOOL}/build/${COPYFILES_LIST}."
if [ -s "$COPYFILES_LIST" ]; then
local CLISTCOUNT=$(cat "$COPYFILES_LIST" | wc -l)
pinfo "Copying $CLISTCOUNT files to stage 3.2 target directory."
tar -cp $(cat ${COPYFILES_LIST}|sort -u) | tar -xp -C "${INIT_DIR}"
local RET=$?
[ "x$RET" != "x0" ] && perror "Could not tar-copy to $INIT_DIR"
fi
}
get_basic_libs () {
[ ! -d ${INIT_DIR} ] && mkdir ${INIT_DIR}
# copy libc and ld-linux separatly
pinfo "Adding basic libs"
BASICLIBS=""
for i in $(ldd ${SHELL})
do
if [ $(echo $i | grep '^/' | grep -c ld) -eq 1 -o $(echo $i | grep '^/' | grep -c libc.so) -eq 1 ];
then
pdebug "Adding $i"
BASICLIBS="${BASICLIBS} $i $(readlink -f "$i")"
fi
done
tar -cp ${BASICLIBS} | tar -xp -C ${INIT_DIR}
local RET=$?
[ "x$RET" != "x0" ] && perror "Could not tar-copy to $INIT_DIR"
}
generate_stage32 () {
initial_checks
get_basic_libs
# if no arguments assume all.
if [ "x$1" = "x" -o "x$1" = "xall" ]; then
tools=$(ls ${TOOL_DIR})
set -- $tools
fi
# now iterate over given tools and copy them
while (( "$#" )); do
process_module "$1"
shift
done
TOOL_STR=""
}
process_module() {
[ "$#" -ne "1" ] && perror "process_module: want 1 param."
local TOOL="$1"
[[ "$PROCESSED_MODULES" == *"!${TOOL}!"* ]] && return # Already processed this module
PROCESSED_MODULES="${PROCESSED_MODULES}!${TOOL}!"
local TOOL_STR=""
pinfo ">>>>>>>>>>>>>>>>> Processing module [ $TOOL ]"
TOOL_STR="[${TOOL}]"
if [ -d "${TOOL_DIR}/${TOOL}" ];
then
#[ "x$DEBUG" != "x1" ] \
# && echo "Logging to ${TOOL_DIR}/${TOOL}/stage32.log" \
# && exec 6>&1 > ${TOOL_DIR}/${TOOL}/stage32.log
# TODO: Make above work with the new logging system (add function to logging.inc to switch logfile)
cd "${TOOL_DIR}/${TOOL}" || perror "Tool dir '${TOOL_DIR}/${TOOL}' seems to exist, but cd to it failed."
pinfo "## Reading config"
read_config
# Check if this module has a dependency that wasn't built yet:
if [ ! -z "$REQUIRED_MODULES" ]; then
pinfo "$TOOL depends on ${REQUIRED_MODULES}...."
for DEP in $REQUIRED_MODULES; do
#[[ "$DESIRED_MODULES" != *"!${DEP}!"* ]] && perror "$TOOL has dependency $DEP, but $DEP is not in current profile."
process_module "$DEP"
done
# Read old config again, as it got overwritten by the deps
cd "${TOOL_DIR}/${TOOL}" || perror "Tool dir '${TOOL_DIR}/${TOOL}' seems to exist, but cd to it failed (after building deps)."
read_config
pinfo "<<<<<<<<<<<<<<<<< Dependency modules processed, back to module [ $TOOL ]"
fi
pinfo "## Reading build"
read_build
pinfo "## Installing dependencies"
install_dependencies
pinfo "## Fetching source"
fetch_source
pinfo "## Building"
build
# remove *.la files as they might confuse libtool/linker of other tool packages
find "${TOOL_DIR}/${TOOL}/build" -name '*.la' -exec rm -f {} \;
pinfo "## Copying files with dependencies"
copyfileswithdependencies
pinfo "## Post copy"
post_copy
# reset pipes
#[ "x$DEBUG" != "x1" ] && exec 1>&6 6>&-
# TODO
pinfo "Module completed."
else
perror "Tool directory for '$TOOL' not found."
# maybe make this a warning instead of error?
fi
}
clean_tools() {
if [ "x$1" = "x" -o "x$1" = "xall" ]; then
#clean all
if [ -d ${INIT_DIR} ]; then
rm -rf "${INIT_DIR}" || perror "Error deleting $INIT_DIR"
fi
for TOOL in $(ls ${TOOL_DIR}); do
clean_tool $TOOL
done
else
while (( "$#" )); do
clean_tool $1
shift
done
fi
}
clean_tool() {
TOOLDIR=${TOOL_DIR}/$1
pinfo "Cleaning ${TOOLDIR}..."
#[ -e ${TOOLDIR}/build/list_wanted_stage3.2 ] && cd ${INIT_DIR} \
# && xargs rm < ${TOOLDIR}/build/list_wanted_stage3.2
#[ -d ${TOOLDIR}/data ] && cd ${INIT_DIR} \
# && xargs rm < $(find ${TOOLDIR}/data -type f)
if [ -e ${TOOLDIR}/.built ]; then
rm "${TOOLDIR}/.built" || perror "Could not clear built flag"
fi
if [ -e ${TOOLDIR}/.fetched_source ]; then
rm "${TOOLDIR}/.fetched_source" || perror "Could not clear fetched_source flag"
fi
if [ -d ${TOOLDIR}/build ]; then
rm -rf "${TOOLDIR}/build" || perror "Could not delete build path"
fi
if [ -d ${TOOLDIR}/src ]; then
rm -rf "${TOOLDIR}/src" || perror "Could not delete src path"
fi
if [ -e ${TOOLDIR}/list_binaries_and_files ]; then
rm "${TOOLDIR}/list_binaries_and_files" || perror "Could not delete list_binaries_and_files"
fi
}
|