How to develop against linux-next
How to develop against linux-next
Posted Nov 13, 2011 20:56 UTC (Sun) by cheako (guest, #81350)In reply to: How to develop against linux-next by jejb
Parent article: The current development kernel is...linux-next?
An example:
mkdir -p ~/src/kernel/ cd ~/src/kernel/ git init linux-next cd linux-next git remote add -t master -f linus git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git git remote add -t master -f next git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git git checkout remotes/next/master git branch base # vi/edit/commit/*rebase/view/ect till your harts content.* Rebase done using instructions in original article, AFAIK.