Changes between Version 8 and Version 9 of DevelopmentSystem


Ignore:
Timestamp:
08/18/2021 11:32:25 PM (3 years ago)
Author:
Cale Collins
Comment:

added git config --global core.abbrev 12

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentSystem

    v8 v9  
    8080
    8181== Development Tools
    82 * install common dev toos:
     82Install common dev toos:
    8383{{{#!bash
    8484sudo apt-get install build-essential git curl wget
    8585}}}
     86
     87Configure Git to use 12 character SHA.  This can potentially prevent version magic errors when building out of tree modules.
     88{{{#!bash
     89git config --global core.abbrev 12
     90}}}
     91To verify, go to your kernel build directory and execute the following command.
     92{{{#!bash
     93git rev-parse --short HEAD
     94}}}
     95
    8696
    8797== Screen