1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-06-26 13:00:13 +02:00
build/pkg/initrd/build
David Oberhollenzer 1ecddf718f cleanup: initrd: no need to install anything
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2019-03-24 16:45:27 +01:00

20 lines
346 B
Plaintext
Executable file

DEPENDS="bbstatic"
build() {
return
}
deploy() {
cp $SCRIPTDIR/pkg/initrd/*.{desc,files} "$PKGDEPLOYDIR"
pkg install -R "$REPODIR" -r "$TCDIR/$TARGET" -l pkg $DEPENDS \
>> "$PKGDEPLOYDIR/initrd.files"
echo "file init 0775 0 0 $SCRIPTDIR/pkg/$PKGNAME/initrd.skel" \
>> "$PKGDEPLOYDIR/initrd.files"
}
check_update() {
return
}