]> git.ipfire.org Git - ipfire-2.x.git/blame - src/scripts/archive.files
pakfire: use correct tree on x86_64.
[ipfire-2.x.git] / src / scripts / archive.files
CommitLineData
1b453c76
MT
1#!/bin/bash
2###############################################################################
3# #
4# IPFire.org - A linux based firewall #
5# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
21
22FILELIST=
23
24for dir in $@; do
2e00d018
MT
25 # Skip all objects that do not exist.
26 [ -e "${dir}" ] || continue
27
28 # Files go directly to the rootfile.
29 if [ -f "${dir}" ]; then
30 FILELIST="${FILELIST} ${dir}"
31 continue
32 fi
33
1b453c76 34 for exclude in ${dir}/${MACHINE}/*; do
2e00d018 35 [ -f "${exclude}" ] || continue
1b453c76
MT
36 EXCLUDE="$EXCLUDE $exclude"
37 done
38
39 FILELIST="${FILELIST} ${EXCLUDE}"
40
41 for include in ${dir}/*; do
42 [ -d ${include} ] && continue
43 IN=true
44 for exclude in ${EXCLUDE}; do
45 if [ "$(basename ${exclude})" = "$(basename ${include})" ]; then
46 IN=false
47 break
48 fi
49 done
50 ${IN} && FILELIST="${FILELIST} ${include}"
51 done
52done
53
2e00d018 54cat ${FILELIST} 2>/dev/null | grep -v ^# | sort | uniq | \
1b453c76 55 sed -e "s/KVER/${KVER}/g" -e "s/MACHINE/${MACHINE}/g" -e "s/BUILDTARGET/${BUILDTARGET}/g"