mirror of
https://github.com/pygos/build.git
synced 2024-11-22 19:19:46 +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>
45 lines
1.1 KiB
Text
Executable file
45 lines
1.1 KiB
Text
Executable file
DEPENDS=$(cat "$SCRIPTDIR/cfg/$CFG/ROOTFS")
|
|
|
|
build() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
local DEPLOY="$3"
|
|
|
|
# setup skeleton
|
|
mkdir -pv ${BUILD}/{bin,lib,etc,dev,sys,proc,tmp,var,run}
|
|
mkdir -pv ${BUILD}/{boot,usr,srv,mnt,opt}
|
|
mkdir -pv ${BUILD}/cfg/{preserve,overlay}
|
|
|
|
echo "/lib" > "$BUILD/etc/ld-musl-arm.path"
|
|
echo "/opt/vc/lib" >> "$BUILD/etc/ld-musl-arm.path"
|
|
|
|
# install packages to rootfs
|
|
dependencies "rootfs-rpi3" "pkg" | grep -v "rootfs-rpi3" > "$BUILD/etc/packages"
|
|
echo "toolchain" >> "$BUILD/etc/packages"
|
|
|
|
while read pkgname; do
|
|
if [ ! -e "$PKGDEPLOYDIR/$pkgname" ]; then
|
|
continue
|
|
fi
|
|
|
|
cp -ru --remove-destination ${PKGDEPLOYDIR}/${pkgname}/* "$BUILD"
|
|
done < "$BUILD/etc/packages"
|
|
|
|
# move configuration to preserve directory
|
|
mv ${BUILD}/etc ${BUILD}/cfg/preserve
|
|
mkdir -p ${BUILD}/etc
|
|
|
|
mv ${BUILD}/var/lib ${BUILD}/cfg/preserve/var_lib
|
|
|
|
mv ${BUILD}/root ${BUILD}/cfg/preserve
|
|
mkdir -p ${BUILD}/root
|
|
chmod 750 ${BUILD}/root
|
|
}
|
|
|
|
deploy() {
|
|
local SOURCE="$1"
|
|
local BUILD="$2"
|
|
local DEPLOY="$3"
|
|
|
|
mksquashfs "$BUILD" "$DEPLOY/rootfs.img" -all-root -no-progress -no-xattrs
|
|
}
|