Created
January 8, 2021 09:39
-
-
Save KunYi/a4030b193958ab077a598be195add746 to your computer and use it in GitHub Desktop.
vscode with yocto project from https://youtu.be/PY4godidHx4?t=388
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.exclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_module/**": true, | |
"**/.svn/**": true, | |
"**/.hg/store/**": true, | |
"**/CVS/**": true, | |
"**/.DS_Store": true, | |
"**/build/cache/**": true, | |
"**/build/sstate-cache/**": true, | |
"**/build/tmp/**": true | |
}, | |
"search.exclude": { | |
"**/.git": true, | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_module/**": true, | |
"**/.svn/**": true, | |
"**/.hg/store/**": true, | |
"**/CVS/**": true, | |
"**/.DS_Store": true, | |
"**/build/cache/**": true, | |
"**/build/sstate-cache/**": true, | |
"**/build/tmp/**": true | |
}, | |
"bitbake.loggingLevel": "info", | |
"bitbake.generateWorkingFolder": false, | |
"bitbake.machine": "qemuarm64" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment