mirror of
https://github.com/pygos/build.git
synced 2024-11-22 19:19:46 +01:00
Remove common product configuration
The simplification of the overide behaviour may be worth the slight duplication overhead. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
e8371806cd
commit
e11477b9cf
5 changed files with 20 additions and 27 deletions
|
@ -1,20 +0,0 @@
|
||||||
coreutils
|
|
||||||
bash
|
|
||||||
bash-completion
|
|
||||||
nano
|
|
||||||
util-linux
|
|
||||||
grep
|
|
||||||
less
|
|
||||||
xz
|
|
||||||
gzip
|
|
||||||
bzip2
|
|
||||||
tar
|
|
||||||
diffutils
|
|
||||||
findutils
|
|
||||||
sed
|
|
||||||
gawk
|
|
||||||
shadow
|
|
||||||
procps-ng
|
|
||||||
psmisc
|
|
||||||
file
|
|
||||||
init
|
|
|
@ -1,3 +1,23 @@
|
||||||
|
coreutils
|
||||||
|
bash
|
||||||
|
bash-completion
|
||||||
|
nano
|
||||||
|
util-linux
|
||||||
|
grep
|
||||||
|
less
|
||||||
|
xz
|
||||||
|
gzip
|
||||||
|
bzip2
|
||||||
|
tar
|
||||||
|
diffutils
|
||||||
|
findutils
|
||||||
|
sed
|
||||||
|
gawk
|
||||||
|
shadow
|
||||||
|
procps-ng
|
||||||
|
psmisc
|
||||||
|
file
|
||||||
|
init
|
||||||
unbound
|
unbound
|
||||||
dnsmasq
|
dnsmasq
|
||||||
openssh
|
openssh
|
||||||
|
|
|
@ -11,10 +11,6 @@ file_path_override() {
|
||||||
echo "$SCRIPTDIR/board/$BOARD/$1"
|
echo "$SCRIPTDIR/board/$BOARD/$1"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
if [ -e "$SCRIPTDIR/product/common/$1" ]; then
|
|
||||||
echo "$SCRIPTDIR/product/common/$1"
|
|
||||||
return
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cat_file_override() {
|
cat_file_override() {
|
||||||
|
@ -35,9 +31,6 @@ cat_file_merge() {
|
||||||
if [ -e "$SCRIPTDIR/board/$BOARD/$1" ]; then
|
if [ -e "$SCRIPTDIR/board/$BOARD/$1" ]; then
|
||||||
cat "$SCRIPTDIR/board/$BOARD/$1"
|
cat "$SCRIPTDIR/board/$BOARD/$1"
|
||||||
fi
|
fi
|
||||||
if [ -e "$SCRIPTDIR/product/common/$1" ]; then
|
|
||||||
cat "$SCRIPTDIR/product/common/$1"
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
apply_patches() {
|
apply_patches() {
|
||||||
|
|
Loading…
Reference in a new issue