summaryrefslogtreecommitdiffstats
path: root/inc/helper.inc.sh
blob: d51aac2fe9afb29bbe67d4a7ffd5730d3e382d8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

setupBindmounts() {
  mount -t proc proc $BROOT_BUILDROOT_PATH/proc
  mount -t tmpfs dev $BROOT_BUILDROOT_PATH/dev
  chroot $BROOT_BUILDROOT_PATH mount -t devpts devpts /dev/pts
  [ "x$(cat /proc/mounts | grep -q "/tmp/deb")" == "x" ] && mount -o bind /tmp/deb $BROOT_BUILDROOT_PATH/var/cache/apt/archives
}

destroyBindmounts() {
  umount $BROOT_BUILDROOT_PATH/proc
  umount $BROOT_BUILDROOT_PATH/dev/pts
  umount $BROOT_BUILDROOT_PATH/dev
  umount /tmp/deb
}