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

setupBindmounts() {
  mount -o bind /proc $buildrootpath/proc
  mount -o bind /dev $buildrootpath/dev
}

destroyBindmounts() {
  umount $buildrootpath/proc
  umount $buildrootpath/dev
}