문제

Is it possible to execute buildroot and have it skip the deployment stage?

In LTIB you simply add --no-deploy.

It's the most expensive step in building and 99 out of 100 times, I'm not interested in the final image because I'm using NFS to mount the target directory during development.

도움이 되었습니까?

해결책

You could remove all the BR2_TARGET_ROOTFS_FOO variables from the .config

다른 팁

If you're doing NFS mount, then you have to create at least a tarball image. Using output/target as your NFS mountpoint is entirely incorrect: the permissions/owernship are not correct, and device files are not present in output/target. Only the images generated by Buildroot have those things correct.

We even committed today a Buildroot change that strongly warns users not to use output/target as their root filesystem: http://git.buildroot.net/buildroot/commit/?id=9226a9907c4eb0fffab777f50e88b74aa14d1737

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top