##// END OF EJS Templates
vknecht-master-merge
vknecht-master-merge

Fichier de la dernière révision:

r68:69e22e063597 Fusion
r68:69e22e063597 Fusion
Show More
functions.sh
38 lines | 941 B | application/x-sh | BashLexer
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67 # This file contains utility functions used by rpi2-gen-image.sh
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 cleanup (){
set +x
set +e
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67
# Identify and kill all processes still using files
Filip Pytloun
Enhance cleanup by killing processes running in endpoint
r59 echo "killing processes using mount point ..."
fuser -k $R
sleep 3
fuser -9 -k -v $R
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67
# Clean up all temporary mount points
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 echo "removing temporary mount points ..."
umount -l $R/proc 2> /dev/null
umount -l $R/sys 2> /dev/null
umount -l $R/dev/pts 2> /dev/null
umount "$BUILDDIR/mount/boot/firmware" 2> /dev/null
umount "$BUILDDIR/mount" 2> /dev/null
Vincent Knecht
Added ENABLE_SPLITFS option to produce distinct /boot/firmware and root images
r66 losetup -d "$ROOT_LOOP" 2> /dev/null
losetup -d "$FRMW_LOOP" 2> /dev/null
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 trap - 0 1 2 3 6
}
chroot_exec() {
# Exec command in chroot
Filip Pytloun
Force noninteractive debian frontend
r58 LANG=C LC_ALL=C DEBIAN_FRONTEND=noninteractive chroot $R $*
Filip Pytloun
Refactor: split bootstrap actions and allow custom
r56 }
Jan Wagner
spliting more files, fix-uboot, fix-fbturbo, fix-locale
r67
install_readonly() {
# Install file with user read-only permissions
install -o root -g root -m 644 $*
}
install_exec() {
# Install file with root exec permissions
install -o root -g root -m 744 $*
}