Changes between Version 8 and Version 9 of DevelopmentSystem
- Timestamp:
- 08/18/2021 11:32:25 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopmentSystem
v8 v9 80 80 81 81 == Development Tools 82 * install common dev toos:82 Install common dev toos: 83 83 {{{#!bash 84 84 sudo apt-get install build-essential git curl wget 85 85 }}} 86 87 Configure Git to use 12 character SHA. This can potentially prevent version magic errors when building out of tree modules. 88 {{{#!bash 89 git config --global core.abbrev 12 90 }}} 91 To verify, go to your kernel build directory and execute the following command. 92 {{{#!bash 93 git rev-parse --short HEAD 94 }}} 95 86 96 87 97 == Screen