blob: ba662f71cadbdc1c2d3c84f462048484eee1854c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#!/bin/bash
# Example:
#
# 1) sudo mount /data/diskimages/rootfs-arm64.img /mnt/tst
#
# 2a) example invocation 1, multiline shell script
# on_chroot /mnt << EOF
# whoami
# EOF
#
# 2b) example invocation 2, one line command
# on_chroot /mnt -c "whoami"
#
# 2b) example invocation 3, interactive bash
# on_chroot /mnt -c "bash"
#
# 3) sudo ./imagetool.sh -u /mnt/tst
#
sdir=`dirname $(readlink -f $0)`
rootdir=`dirname $sdir`
parentdir=`dirname $rootdir`
echo sdir ${sdir}
echo rootdir ${rootdir}
echo parentdir ${parentdir}
username=${USER}
export ROOTFS_DIR=$1
shift 1
if [ -z "${ROOTFS_DIR}" ]; then
echo Usage "$0 <rootfs-dir> commands..."
exit 1
fi
rootfs_parentdir="${ROOTFS_DIR}${parentdir}"
echo rootfs_parentdir ${rootfs_parentdir}
if ! mount | grep -q "$(realpath "${ROOTFS_DIR}"/proc)"; then
sudo mount -t proc proc "${ROOTFS_DIR}/proc"
fi
if ! mount | grep -q "$(realpath "${ROOTFS_DIR}"/dev)"; then
sudo mount --bind /dev "${ROOTFS_DIR}/dev"
fi
if ! mount | grep -q "$(realpath "${ROOTFS_DIR}"/dev/pts)"; then
sudo mount --bind /dev/pts "${ROOTFS_DIR}/dev/pts"
fi
if ! mount | grep -q "$(realpath "${ROOTFS_DIR}"/sys)"; then
sudo mount --bind /sys "${ROOTFS_DIR}/sys"
fi
if ! mount | grep -q "${rootfs_parentdir}"; then
sudo mkdir -p "${rootfs_parentdir}"
sudo mount --bind ${parentdir} "${rootfs_parentdir}"
fi
# sudo chroot ${ROOTFS_DIR}/ /bin/bash "$@"
sudo /sbin/capsh --user=$username --drop=cap_setfcap "--chroot=${ROOTFS_DIR}/" -- -e "$@"
|