Differences between revisions 23 and 24
Revision 23 as of 2006-12-03 10:34:04
Size: 1545
Editor: HolgerLevsen
Comment:
Revision 24 as of 2006-12-06 14:44:16
Size: 1745
Editor: HolgerLevsen
Comment:
Deletions are marked like this. Additions are marked like this.
Line 23: Line 23:
== using quilt in 5 min == == adding patches with quilt to a package ==
Line 31: Line 31:

== adding more patches later ==

 1. export QUILT_PATCHES=debian/patches
 1. quilt new 200-etc-olsrd.patch
 1. quilt add Makefile.inc
 1. vi Makefile.inc
 1. quilt refresh

random todo for d-i powerpc

  • full install debian-edu/etch-test
  • floppy install oldworld
  • test dailys with 32mb on newworld
  • report memory limits for d-i powerpc for the manual

random issues in d-i powerpc

adding patches with quilt to a package

  1. add quilt to build-depends
  2. create debian/patches/ and put the patches there
  3. cd debian/patches ; ls > series

  4. add "QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2" to the configure target in debian/rules

  5. add "QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2" to the clean target in debian/rules

  6. enjoy :)

adding more patches later

  1. export QUILT_PATCHES=debian/patches
  2. quilt new 200-etc-olsrd.patch
  3. quilt add Makefile.inc
  4. vi Makefile.inc
  5. quilt refresh