mdadm: Add IMSM support

cleanup-cruft
Laurent Pinchart 15 years ago committed by Sebastian Pipping
parent daed0ccebb
commit 6c042e61ec

@ -476,15 +476,16 @@ compile_mdadm() {
sed -i "s/^# LDFLAGS = -static/LDFLAGS = -static/" Makefile sed -i "s/^# LDFLAGS = -static/LDFLAGS = -static/" Makefile
print_info 1 'mdadm: >> Compiling...' print_info 1 'mdadm: >> Compiling...'
compile_generic 'mdadm' utils compile_generic 'mdadm mdmon' utils
mkdir -p "${TEMP}/mdadm/sbin" mkdir -p "${TEMP}/mdadm/sbin"
install -m 0755 -s mdadm "${TEMP}/mdadm/sbin/mdadm" install -m 0755 -s mdadm "${TEMP}/mdadm/sbin/mdadm"
install -m 0755 -s mdmon "${TEMP}/mdadm/sbin/mdmon"
print_info 1 ' >> Copying to bincache...' print_info 1 ' >> Copying to bincache...'
cd "${TEMP}/mdadm" cd "${TEMP}/mdadm"
strip "sbin/mdadm" || strip "sbin/mdadm" "sbin/mdmon" ||
gen_die 'Could not strip mdadm!' gen_die 'Could not strip mdadm binaries!'
/bin/tar -cjf "${MDADM_BINCACHE}" sbin/mdadm || /bin/tar -cjf "${MDADM_BINCACHE}" sbin/mdadm sbin/mdmon ||
gen_die 'Could not create binary cache' gen_die 'Could not create binary cache'
cd "${TEMP}" cd "${TEMP}"

Loading…
Cancel
Save