Files
bpfire/src/scripts/archive.files
2023-05-12 14:47:28 +00:00

63 lines
2.4 KiB
Bash
Executable File

#!/bin/bash
###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2022 IPFire Team <info@ipfire.org> #
# #
# 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/>. #
# #
###############################################################################
for i in BUILD_ARCH BUILDTARGET KVER; do
if [ -z "${!i}" ]; then
echo "${i} not set" >&2
exit 1
fi
done
FILELIST=
for dir in $@; do
# Skip all objects that do not exist.
[ -e "${dir}" ] || continue
# Files go directly to the rootfile.
if [ -f "${dir}" ]; then
FILELIST="${FILELIST} ${dir}"
continue
fi
for exclude in ${dir}/${BUILD_ARCH}/*; do
[ -f "${exclude}" ] || continue
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} 2>/dev/null | grep -v ^# | sort | uniq | \
sed -e "s/KVER/${KVER}/g" -e "s/xxxMACHINExxx/${BUILD_ARCH}/g" -e "s/BUILDTARGET/${BUILDTARGET}/g"