PATCH TO BUILDROOT
You can see a detail desctiption on the page submitting-patches:
First of all you have to clone the repository:
$ git clone git://git.buildroot.net/buildroot
Then you have to make sure that your name and email are right:
$ git config --global user.name 'Oscar Gomez Fuente'
$ git config --global user.email oscargomezf@gmail.com
In order to send a patch properly you have to follow the next steps:
$ git reset --soft origin/master
$ git add file_name_1 file_name_2 ... ...file_name_n
$ git commit -s
This git commit option, "-s" add this text at the end of the message:
Signed-off-by: Oscar Gomez Fuente <oscargomezf@gmail.com>
$ git fetch --all --tags
$ git rebase origin/master
$ git format-patch -M -n -s -o outgoing origin/master
This will generate patch files in the outgoing subdirectory, automatically adding the Signed-off-by line.
$ ./utils/get-developers outgoing/*
Use the output of get-developers to send your patches:
$ git send-email --to buildroot@buildroot.org --cc bob --cc alice outgoing/*
Firstly, you have to commit your changes and then:
git format-patch<branch-name or commit ID>Create a patch for each commit contained in the current branch but not in <branch-name>. You can also specify a commit ID instead of<branch-name>.
git am < patch-file Apply a patch to the current branch.