mirror of
https://github.com/pygos/build.git
synced 2025-01-12 05:55:31 +01:00
ffacb26218
Instead of having a "depends" file with a list of packages, add a "DEPENDS" variable to the build script. Generate the rootfs dependencies from a config file stored in the cfg directory. Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
14 lines
201 B
Text
Executable file
14 lines
201 B
Text
Executable file
DEPENDS="gcc2"
|
|
|
|
build() {
|
|
return
|
|
}
|
|
|
|
deploy() {
|
|
local INPUT="$1"
|
|
local OUTPUT="$2"
|
|
local DEPLOY="$3"
|
|
|
|
rsync -aH --files-from="$SCRIPTDIR/cfg/$CFG/libgcc_files.txt" \
|
|
"$TCDIR/$TARGET" "$DEPLOY"
|
|
}
|