Add support for multiarch rootfiles.

This commit is contained in:
Michael Tremer
2011-09-16 21:14:51 +02:00
parent 149e83be33
commit 1b453c76b4
3 changed files with 75 additions and 23 deletions

45
src/scripts/archive.files Executable file
View File

@@ -0,0 +1,45 @@
#!/bin/bash
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
FILELIST=
for dir in $@; do
for exclude in ${dir}/${MACHINE}/*; do
EXCLUDE="$EXCLUDE $exclude"
done
FILELIST="${FILELIST} ${EXCLUDE}"
for include in ${dir}/*; do
[ -d ${include} ] && continue
IN=true
for exclude in ${EXCLUDE}; do
if [ "$(basename ${exclude})" = "$(basename ${include})" ]; then
IN=false
break
fi
done
${IN} && FILELIST="${FILELIST} ${include}"
done
done
cat ${FILELIST} | grep -v ^# | sort | uniq | \
sed -e "s/KVER/${KVER}/g" -e "s/MACHINE/${MACHINE}/g" -e "s/BUILDTARGET/${BUILDTARGET}/g"