Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debootstrap setup #331

Merged
merged 4 commits into from Feb 13, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
debootstrap: Always try to unmount binfmt_misc
Some builds trigger binfmt_misc to be mounted. Make sure that gets
cleaned up.
  • Loading branch information
sjoerdsimons committed Feb 8, 2017
commit 7f0efeeba7f62a8266166f8def79ff503b7455bc
1 change: 1 addition & 0 deletions build-recipe-debootstrap
Expand Up @@ -77,6 +77,7 @@ recipe_build_debootstrap() {
# do the build
dsc_build "$BUILD_ROOT/$myroot"

umount -n $BUILD_ROOT/$myroot/proc/sys/fs/binfmt_misc 2>/dev/null || true
umount -n $BUILD_ROOT/$myroot/proc
umount -n $BUILD_ROOT/$myroot/dev/pts
umount -n $BUILD_ROOT/$myroot/dev/shm
Expand Down