Re: patch management scripts

Andrew Morton (akpm@digeo.com)
Sun, 20 Oct 2002 19:54:40 -0700


Oliver Xymoron wrote:
>
> On Sun, Oct 20, 2002 at 12:22:43PM -0700, Andrew Morton wrote:
> >
> > I finally got around to documenting the scripts which I use
> > for managing kernel patches. See
> >
> > http://www.zip.com.au/~akpm/linux/patches/patch-scripts-0.1/
> >
> > These scripts are designed for managing a "stack" of patches against
> > a rapidly-changing base tree. Because that's what I use them for.
> >
> > I've been using and evolving them over about six months. They're
> > pretty fast, and simple to use. They can be used for non-kernel
> > source trees.
>
> Thanks for posting these - hopefully it will generate some discussion.
>
> My own personal scripts (while obviously not getting nearly the
> workout yours are) make at least one part noticeably simpler - I use a
> complete 'cp -al' for the current "top of the applied stack" rather
> than your foo.c~bar files.

That has always seemed unnatural to me. By keeping everything
in the one tree you can easily:

- collapse patches together:

pushpatch first-patch
for i in $(cat pc/second-patch.pc)
fpatch $i
done
patch -p1 < patches/second-patch.patch
refpatch

- Reorder patches (edit series file, poppatch 10; pushpatch 10)

- Remove a patch which is partway down the stack:

rpatch patch-7-out-of-10

- make changes to a not-topmost patch without having to do
anything special.

Dunno. There are probably ways of doing all these things with a
whole-tree copy, but I haven't tried to plot it all out.

Changelog tracking is fairly important to me also.

mnm:/usr/src/25> ls -l txt|wc -l
560
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/