[PATCH] Xilinx SystemACE device driver

Grant Likely grant.likely at secretlab.ca
Sat Jul 14 03:36:08 EST 2007


On 7/13/07, Robertson, Joseph M. <joseph.robertson at sanmina-sci.com> wrote:
>
> Hi,
>
>  Ok, so outlook is a problem.  The horror is that, where I work thats all I
> can use.  They block all the outside systems like gmail, yahoo, etc.  So
> under linux, I have to use the web access for outlook.  ugh.
>  Why I work here I don't know, they think all software HAS to be bought.
>
>  Um, so your patch creates another xsysace.c file, all by itself, which is a
> NEW driver?
>  This replaces the 8 files of the previous driver?  What happens to all the
> low level funcs?
>
>  Where can I get your 2.6.22 tree to see how this is all supposed to go
> together?  Is there a tar.bz2 package?

Start with installing 'git'.  http://git.or.cz/

Then clone Linus' tree:

$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git

if you're company blocks the git port, then you can use HTTP instead:

$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git

There are a number of different git repos out there with virtex
support integrated, but I'm going to use the example of my tree...  (I
rebased my tree onto 2.6.22, so it's very up to date)

$ git fetch git://git.secretlab.ca/git/linux-2.6.git virtex-dev:virtex-dev
(Again, you can use http:// if the git port is blocked)

Now you'll have a branch in your git tree called 'virtex-dev' that
includes my patchset.

You can checkout that branch with:
$ git branch mybranch virtex-dev
$ git checkout mybranch

You can view the patchset with:
$ gitk virtex-dev

You can look at in individual patch with:
$ git show <SHA1 id>
(All git commits are identified with a SHA1 hash; you'll see them in
gitk, or when you do a 'git log)

Also, you can view the tree online at:
http://git.secretlab.ca/cgi-bin/gitweb.cgi?p=linux-2.6.git;a=summary

If you click on the 'commitdiff' link for a patch, followed by
'plain', you should get a downloadable version of the patch.

Cheers,
g.


-- 
Grant Likely, B.Sc., P.Eng.
Secret Lab Technologies Ltd.
grant.likely at secretlab.ca
(403) 399-0195



More information about the Linuxppc-embedded mailing list