This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Steps to commit patch on TI kernel git tree for pandaboard

Hi All,

I am using below git tree for kernel for pandaboard.
git clone git://dev.omapzoom.org/pub/scm/integration/kernel-ubuntu.git
git checkout -b working origin/ti-ubuntu-3.4-1486

I have done some modifications on this kernel and generated patch. I want to commit it to the pandaboard community. I have followed below steps for generating and commit patch of my modifications. Can you please suggest whether the steps are correct or not. As I have not got any notifications after following the below steps.

$ git commit -a -m "<subject of modifications>"
[working xyz] subject of modifications
 Committer: machine-userid <machine userid>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:

    git config --global user.name "Your Name"
    git config --global user.email you@example.com

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author

 4 files changed, 80 insertions(+), 12 deletions(-)
$ mkdir ../patchToSubmit
$ git format-patch -1 -s --subject-prefix='<subject of modifications>' -o ../patchToSubmit/
../patchToSubmit/0001-<subject of modifications>
$ git config --global user.name "Actual User Name"
$ git config --global user.email <Actual email ID>
$ git commit --amend --reset-author
[working xyz-abc] <subject of modifications>
 4 files changed, 80 insertions(+), 12 deletions(-)

Please let me know if I missed something. Thank you so much in advance.

Regards,
Deep Shah

  • Or can anybody tell me the email ID, where I can send the patches of this repository?

    I am using Pandaboard Rev B3 which is having ELPIDA-LPDDR2-s4-8Gb RAM. I have made modifications to support this RAM in the kernel and want to submit patches in git tree. From the above steps I have committed the patch in the git. Please confirm the steps. I have configured my user.name and user.email with below commands (git config --global user.name and git config --global user.email) . 

    Regards,
    Deep

  • From the steps you mention it is missing the push command to upload the patch to the server. It may be required registering in the site but I am not sure about what site to register try using review.omapzoom.org. I found some links about git push command in omapedia, some links may not be updated.

    http://omapedia.org/wiki/Linux_OMAP_integration_tree

    http://omapedia.org/wiki/Gerrit

    http://omapedia.org/wiki/Android_How-tos#Use_.22repo.22_to_Push_Patches