Skip to main content

Posts

Showing posts from March, 2014
patch "drivers:staging:ozwpan Replaced wrapper functions with actual spin" added to staging tree 1 message gregkh@linuxfoundation.org   <gregkh@linuxfoundation.org> Tue, Mar 4, 2014 at 4:50 PM To: surendra.tux@gmail.com, gregkh@linuxfoundation.org, rupesh.gujare@atmel.com This is a note to let you know that I've just added the patch titled     drivers:staging:ozwpan Replaced wrapper functions with actual spin to my staging git tree which can be found at     git:// git.kernel.org/pub/scm/ linux/kernel/git/gregkh/ staging.git in the staging-next branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will also be merged in the next major kernel release during the merge window. If you have any questions about this process, please let me know. From 6b029336d93d8f9a94b0256b1f7d9c 1768eedba7 Mon Sep 17 00:00:00 2001 From: Surendra Patil < surendra.tux@gmail.com > Dat

How to send patches to linux-next tree staging subsystem

1) Checkout the latest branch from below link       git clone git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git 2)  Bu ild the kernel using below commands       make oldconfig && make prepare        make scripts 3) Configure your git-send-email for gmail  https://www.kernel.org/pub/software/scm/git/docs/git-send-email.html   This is my .gitconfig file.Paste the below contents into your ~/.gitconfig file.  Edit  name and email address,currently it is configured for gmail. -------------------------------------------------------------------------------------------------------------------------------   [user]         name = Surendra Patil         email = surendra.tux@gmail.com [sendemail]         smtpserver = smtp.gmail.com         smtpserverport = 587         smtpencryption = tls         smtpuser = surendra.tux@gmail.com         smtpssl = true [core]         editor = vim         whitespace = fix,-indent-with-non-tab,trailing-space,cr-a