mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
David Oberhollenzer
c8d01f966a
Been working on this for too long, don't remember the specifics, will add documentation. Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
43 lines
937 B
Text
Executable file
43 lines
937 B
Text
Executable file
DEPENDS="rootfs"
|
|
|
|
build() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
pkg install -om -r "$PKGBUILDDIR/$OS_RELEASE" -R "$REPODIR" $DEPENDS
|
|
|
|
# copy helper scripts
|
|
local linux_image="vmlinuz"
|
|
local rootfs_image="rootfs.img"
|
|
|
|
for script in runqemu.sh cmdline.txt kernel.txt; do
|
|
cp "$SCRIPTDIR/pkg/$PKGNAME/$script" "$PKGBUILDDIR"
|
|
|
|
sed -i 's#ROOTFSFILE#'$rootfs_image'#g' "$PKGBUILDDIR/$script"
|
|
sed -i 's#KERNELFILE#'$linux_image'#g' "$PKGBUILDDIR/$script"
|
|
sed -i 's#VERSIONDIR#'$OS_RELEASE'#g' "$PKGBUILDDIR/$script"
|
|
done
|
|
|
|
# boot partition
|
|
mkdir "$PKGBUILDDIR/bootfs"
|
|
mv "$PKGBUILDDIR/$OS_RELEASE" "$PKGBUILDDIR/bootfs"
|
|
mv "$PKGBUILDDIR/cmdline.txt" "$PKGBUILDDIR/bootfs"
|
|
mv "$PKGBUILDDIR/kernel.txt" "$PKGBUILDDIR/bootfs"
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local DEPLOY="$2"
|
|
|
|
tar czf "$DEPLOY/$PKGNAME.tar.gz" *
|
|
|
|
touch "$2/$PKGNAME.files"
|
|
cat > "$2/$PKGNAME.desc" <<_EOF
|
|
name $PKGNAME
|
|
_EOF
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|
|
|