- Create the commit
git format-patch origin/master
git send-email --in-reply-to=SOME_MESSAGE_ID --to=git@vger.kernel.org,OTHERS NAME_OF_PATCH_FILE
View windows setup.ps1
This file contains 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
choco install linkshellextension -y |
View ubuntu-setup.sh
This file contains 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
sudo add-apt-repository ppa:danielrichter2007/grub-customizer | |
sudo apt update | |
sudo apt install grub-customizer -y | |
sudo apt install golang-go -y | |
go get -u github.com/odeke-em/drive/cmd/drive |
View Setup Raspberry Pi chroot for cross compilation
This file contains 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
#!/bin/bash | |
# https://gauvain.pocentek.net/docs/raspbian-chroot/ | |
apt install schroot | |
echo \ | |
[jessie] \ | |
description=Raspbian armhf \ | |
directory=/var/chroot \ |
View submit-git-patch.md
View makefile
This file contains 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
# Default variables | |
PROJECT_NAME ?= unnamed | |
BUILD_DIR ?= build | |
BINARIES_DIR ?= bin | |
LIB_DIR ?= lib | |
SOURCES_DIR ?= src | |
TEST_SOURCES_DIR ?= test | |
INCLUDE_DIR ?= include | |
INCLUDES += -I$(INCLUDE_DIR) |