-
Notifications
You must be signed in to change notification settings - Fork 95
Update building.md #629
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
base: master
Are you sure you want to change the base?
Update building.md #629
Conversation
add missing pull lfs objects to avoid broke the build git lfs fetch --all && git lfs pull && git submodule foreach --recursive 'git lfs fetch --all && git lfs pull'
If git-lfs is already installed then LFS objects should be pulled automatically when cloning. |
I update the doc to reflect this information |
It would be better to put the note after the block of running the deps scripts, since if it's not installed before running the clone, then that will be what installs it. The |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Based on my testing, only git lfs pull
in the top directory is needed to solve the coreboot build problem (meaning manually recursing into submodules isn't needed), so I've simplified it to just that. Also adjusted the location based on @crawfxrd's feedback.
add missing pull lfs objects to avoid broke the build
git lfs fetch --all && git lfs pull && git submodule foreach --recursive 'git lfs fetch --all && git lfs pull'
sugested by crawfxrd on issue and Andrew Lane by email
it solved #617