mirror of
https://github.com/pygos/build.git
synced 2024-11-25 04:20:41 +01:00
David Oberhollenzer
882ce4a8f4
- All linux packages generate "linux" and "linux-modules" - Preference mechanism is used to select the right source package - Rootfs depends on "linux-modules" to install the selected kernels modules into the squashfs image - The release pacakge depends on "linux" to install the appropriate kernel to the boot partition Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
34 lines
870 B
Text
Executable file
34 lines
870 B
Text
Executable file
DEPENDS="rootfs linux"
|
|
SUBPKG="release"
|
|
|
|
build() {
|
|
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() {
|
|
tar czf "$BUILDROOT/release.tar.gz" *
|
|
touch "$PKGDEPLOYDIR/release.files" "$PKGDEPLOYDIR/release.desc"
|
|
}
|
|
|
|
check_update() {
|
|
return
|
|
}
|
|
|