- 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 Setup Raspberry Pi chroot for cross compilation
#!/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
# 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) |