Last active
September 30, 2025 06:07
-
-
Save RainyXeon/0161f37f4da882d31db349de39b81adc to your computer and use it in GitHub Desktop.
Script to set experimental local version
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
| echo "Remove Official Local Version String" | |
| rm "localversion-moon" | |
| echo "Add experimental version string" | |
| echo "-EXPERIMENTAL-MoonWake" > localversion-00-experimental | |
| echo "Add commit version string" | |
| echo "-$(git rev-parse --short=7 HEAD)" > localversion-01-experimental | |
| echo "Add run number string" | |
| echo "-$RUN_NUMBER" > localversion-02-experimental | |
| make O=out kernelrelease | |
| echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment