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

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

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