]> git.ozlabs.org Git - yaboot.git/blob - ChangeLog
On some of the larger kernels we are starting to see a space squeeze.
[yaboot.git] / ChangeLog
1 commit fa024941f8f1237e01e2ecf338442be9062953cc
2 Author: Paul Nasrat <pnasrat@redhat.com>
3 Date:   Tue May 15 14:28:02 2007 +0100
4
5     use of cfg_set_default_by_mac() function in yaboot.c
6     
7     This last part calls the cfg_set_default_by_mac() function in yaboot.c
8     by load_config_file() function.
9     
10     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
11
12 commit 313f71b25817a54832ac2ab46efcee2f5ab30331
13 Author: Paul Nasrat <pnasrat@redhat.com>
14 Date:   Tue May 15 14:25:55 2007 +0100
15
16     This part creates the cfg_set_default_by_mac() function.
17     
18     This function sets the default cf_option if there is an image label if
19     the same MAC address of the machine is netbooting.
20     
21     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
22
23 commit cf0768af118d79ba4888a7fb0fcd800fdf76dc98
24 Author: Paul Nasrat <pnasrat@redhat.com>
25 Date:   Tue May 15 14:24:06 2007 +0100
26
27     load_my_config_file() modifications in yaboot.c
28     
29     This second part, deletes the netbooting like PXE algorithm from
30     yaboot.c (reallocated in prom.c) and sets the use of prom_get_netinfo(),
31     prom_get_mac (), prom_get_ip () functions in load_my_config_file()
32     function to netbooting work like before the changes.
33     
34     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
35
36 commit 78cfabe0fac2682681c604bfe9b7266f173b9ea2
37 Author: Paul Nasrat <pnasrat@redhat.com>
38 Date:   Tue May 15 14:23:26 2007 +0100
39
40     prom functions
41     
42     This first part creates the prom_get_netinfo (), prom_get_mac (),
43     prom_get_ip () functions, and some structures to get the necessary
44     information about the MAC and IP addresses.
45     
46     Actually, this is a reallocation of netbooting like PXE algorithm wrote
47     by Benoit Guillon [1], to be used by any other part of Yaboot to get the
48     netbooting information.
49     
50     [1] http://ozlabs.org/pipermail/yaboot-devel/2006-December/000062.html
51     
52     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
53
54 commit c5340d42bba9a51b5b0e22f2161985213d54f805
55 Author: Paul Nasrat <pnasrat@redhat.com>
56 Date:   Tue May 15 14:18:33 2007 +0100
57
58     This patch fixes OF netbooting on pSeries
59     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
60
61 commit 750ce1ac64bea60a4c072373ed9661c8b180b627
62 Author: Paul Nasrat <pnasrat@redhat.com>
63 Date:   Tue May 15 14:14:43 2007 +0100
64
65     User-specified config file on Yaboot's prompt
66     This patch clears out the kernel image list before loading a new config file.
67     Leonardo Rangel lrangel at linux.vnet.ibm.com
68
69 commit 7305a1de1f811a7e5afe9ec24244848c298ef352
70 Author: Paul Nasrat <pnasrat@redhat.com>
71 Date:   Thu Apr 19 10:27:05 2007 +0100
72
73     Enable user to supply config from yaboot command line.
74     
75     Leonardo Rangel <lrangel@linux.vnet.ibm.com>
76
77 commit aa67de3649c86c158622391aeec0016645b4f0d1
78 Author: Paul Nasrat <pnasrat@redhat.com>
79 Date:   Thu Apr 19 10:25:28 2007 +0100
80
81     The following patch fix reverts removal of some lines for the netboot patch.
82     
83     Signed-off-by: Paulo Ricardo Paz Vital <vital@br.ibm.com>
84
85 commit a5b19d45fb5569f68e56445536296188b2ec0809
86 Author: Paul Nasrat <pnasrat@redhat.com>
87 Date:   Thu Apr 19 10:14:24 2007 +0100
88
89     ybin userland interface for specifying bootonce
90     
91     Add an option to ybin called "--bootonce" that takes exactly one
92     argument, the label of the kernel to boot exactly once, on next reboot.
93     
94     Do some sanity checking.  Grep through the yaboot config file to make
95     sure that label=WHATEVER exists somewhere, bail if not.  Try to prune
96     out comment lines.  Perhaps this might be implemented better.  It worked
97     will in my testing, though.
98     
99     Set the boot-once OF environment variable to the --bootonce value.  Due
100     to the previously mentioned nvsetenv bug, this will fail silently if
101     you're trying to set boot-once on a system where boot-once doesn't
102     already exist in nvram.  Thus, immediately after doing the set, try and
103     read it back out of nvsetenv and make sure it landed there.  Bail if
104     not.
105     
106     Signed-off-by: Dustin Kirkland <dustin.kirkland@us.ibm.com>
107
108 commit 89f352cbee373069ed035476cb4c18027ff0a5b3
109 Author: Paul Nasrat <pnasrat@redhat.com>
110 Date:   Thu Apr 19 10:13:43 2007 +0100
111
112     yaboot menu user interface
113     
114     This patch allows for denoting a kernel label as a "boot-once" label
115     when printing the menu of labels.
116     
117     The label flagged as default is marked with an asterisk (*).  If a label
118     matches the global bootoncelabel, I'm marking it with an ampersand (&).
119     I'm ambivalent about the symbol used here, or even if it is.  But I
120     found this bit useful when debugging and testing the functionality, and
121     it's trivial to add cleanly.  I chose ampersand because it's immediately
122     left of the asterisk on my keyboard.
123
124 commit 320a30ef3761980800710b9d8352229c53c36a43
125 Author: Paul Nasrat <pnasrat@redhat.com>
126 Date:   Thu Apr 19 10:12:22 2007 +0100
127
128     read boot-once, zero out, set bootoncelabel as default
129     
130     This patch reads the boot-once environment variable from Open Firmware
131     and stores in a global variable, "bootoncelabel".
132     
133     It then unconditionally zeros out the boot-once environment variable.
134     
135     *** Note that according to 1275, setprop will create a specified
136     environment variable if it doesn't already exist.  A bug in nvsetenv
137     causes it to fail silently if you try to set an OF environment variable
138     that does not already exist.  However, simply booting a system running a
139     yaboot with this patch set compiled in will in fact create the boot-once
140     environment variable, which nvsetenv can later set and reset.
141     
142     Signed-off-by: Dustin Kirkland <dustin.kirkland@us.ibm.com>
143
144 commit 5d4289bddaef010cc14bcbeecfd13d5068b50a8e
145 Author: Paul Nasrat <pnasrat@redhat.com>
146 Date:   Thu Apr 19 10:11:19 2007 +0100
147
148     prom setprop primatives
149     
150     This patch creates the prom_set_options() and prom_setprop() functions.
151     These are precise mirrors of their read-only brothers,
152     prom_get_options() and prom_getprop(), implemented as defined in the
153     Open Firmware 1275 spec.
154     
155     The prom_set_options() function will be used to zero out the boot-once
156     label unconditionally after reading it.
157     
158     Signed-off-by: Dustin Kirkland <dustin.kirkland@us.ibm.com>
159
160 commit 117cc2a76cc76227a5dd99d3435afb6737a41879
161 Author: Paul Nasrat <pnasrat@redhat.com>
162 Date:   Wed Apr 18 14:27:59 2007 +0100
163
164     Loading a different config file (confarg feature)
165     Origin: Paulo Ricardo Paz Vital <vital@br.ibm.com>
166
167 commit 874609eb643e1f93f78b36c706dcdfb6bb4ddde3
168 Author: Paul Nasrat <pnasrat@redhat.com>
169 Date:   Wed Mar 7 11:31:12 2007 +0000
170
171     Remove devel debugging code
172     Patch from Benoit Guillon
173
174 commit be7cdc5970eef6bf45394304a0aaeb1ae203d456
175 Author: Paul Nasrat <pnasrat@redhat.com>
176 Date:   Wed Mar 7 08:52:19 2007 +0000
177
178     Compile fix
179     Paulo Vital <vital at br.ibm.com>
180
181 commit a5141a38c8aacc04e7c7673d2cb522a085245d68
182 Author: Paul Nasrat <pnasrat@redhat.com>
183 Date:   Fri Mar 2 16:36:30 2007 +0000
184
185     This is a combination of three patches (the first two for adding
186     prom_getproplen and ARRAY_SIZE) for getting the pxelinux config file
187     search working.
188     
189     Nathan Lynch (original patch)
190     Benoit Guillon (update to 1.3.14rc tree)
191
192 commit 778a7e33cfa273b52c5b6256e61da1e00303d304
193 Author: Paul Nasrat <pnasrat@redhat.com>
194 Date:   Fri Mar 2 16:26:18 2007 +0000
195
196     Certain levels of IBM firmware will allow the system to boot from an
197     iscsi target.  System OFW accomplishes this by setting up a virtual
198     disk device with parameters.  These parameters, when passed back to
199     OFW by yaboot, directs the FW to use virtual device over the ethernet
200     port that will then access iscsi target as a block device.  This patch
201     extracts those parameters from the property of the virtual device and
202     passes them back to OFW to indicate the kernel is to be retrieved via
203     the iscsi protocol.
204     
205     Signed-off-by: Doug Maxey <dwm@austin.ibm.com>
206     Cc: Ben Herrenscmidt <benh@kernel.crashing.org>
207     Cc: Mike Christie <michaelc@cs.wisc.edu>
208
209 commit 6f00a510abbfaa45b580cf5f371f0168ba662d3d
210 Author: Paul Nasrat <pnasrat@redhat.com>
211 Date:   Thu Feb 15 12:32:26 2007 +0000
212
213     Merge ability to have per machine type config entries from ubuntu/silo.
214
215 commit 3a57377b5279a98ad98ef4b535eb0516099bc737
216 Author: Paul Nasrat <pnasrat@redhat.com>
217 Date:   Thu Feb 15 12:24:28 2007 +0000
218
219     Determine last ext3 LBA to fix wild LBA reads
220     Signed-off-by: Doug Maxey <dwm@austin.ibm.com>
221     Cc: Ben Herrenschmidt <benh@kernel.crashing.org>
222
223 commit 216a58f46680540da482f6fc5499b283f2e5830d
224 Author: Paul Nasrat <pnasrat@redhat.com>
225 Date:   Thu Feb 15 12:21:14 2007 +0000
226
227     Remove binary libext2fs.a and build against system library.
228
229 commit ba131271e6a8f3401cf6faa7d751530b6151ae3a
230 Author: Paul Nasrat <pnasrat@redhat.com>
231 Date:   Thu Feb 15 12:09:45 2007 +0000
232
233     Remove binary libext2fs.a and build against system library.
234
235 commit b714c2f1ef68d3666d14dd3a96351649468329aa
236 Author: Paul Nasrat <pnasrat@redhat.com>
237 Date:   Tue Nov 28 14:36:02 2006 +0000
238
239     Device-trees don't have symlinks made any more
240
241 commit 1d8bdec959fa2675b7c1b752cac22fa47edb9394
242 Author: Paul Nasrat <pnasrat@redhat.com>
243 Date:   Thu Nov 16 12:34:02 2006 +0000
244
245     Add support to ofpath for usb-storage and fix sbp-2 storage
246     Patch from Alex Kanavin
247
248 commit 19b1c37ef5cc57f24311a1de997a304714fbfd0e
249 Author: Paul Nasrat <pnasrat@redhat.com>
250 Date:   Tue Jul 11 16:25:26 2006 -0400
251
252     Clean up yabootconfig kernel/initrd code -  Joseph Jezak <josejx@gentoo.org>
253
254 commit 75c4ba10686ac9d3a392cdcd537489eaf656951e
255 Author: Paul Nasrat <pnasrat@redhat.com>
256 Date:   Tue Jul 11 16:18:09 2006 -0400
257
258     Fix for not all device trees having k2-sata@N/compatible (from gentoo)
259
260 commit cd202d3404a953404f59453e8998a9fa13fa8ccf
261 Author: Paul Nasrat <pnasrat@redhat.com>
262 Date:   Wed May 10 14:48:35 2006 -0400
263
264     Merge ubuntu ofpath fixes
265
266 commit a2b7bb030d78c61ef150f8c9f6926c9558a6f1b5
267 Author: Doug Maxey <dwm@austin.ibm.com>
268 Date:   Mon Apr 24 22:37:33 2006 -0500
269
270     Sweep all the files for trailing whitespace.
271     
272     Signed-off-by: Doug Maxey <dwm@austin.ibm.com>
273
274 commit 91c4dc8ecc65bbd490c1da2e89d4f576db7e8344
275 Author: Paul Nasrat <pauln@enki.eridu>
276 Date:   Fri Apr 21 10:49:59 2006 -0400
277
278     Update to point to ozlabs
279
280 commit a108f9cf358c77b168a582f3e9e8f1e8233c85a6
281 Author: Paul Nasrat <pauln@enki.eridu>
282 Date:   Fri Apr 21 10:47:04 2006 -0400
283
284     update TODO
285
286 commit fb19c524bfae0a8105d9321eec4c60daa2f60a03
287 Author: Paul Nasrat <pnasrat@redhat.com>
288 Date:   Fri Feb 10 01:29:18 2006 +0000
289
290     Fix ofpath for G5 with multiple drives
291     
292     Fix ofpath for G5 with multiple drives
293     
294     git-archimport-id: pnasrat@redhat.com/yaboot--devel--1.3--patch-3
295
296 commit 57870d23dbeac8a33e8f2689fe5ed52528530c18
297 Author: Paul Nasrat <pnasrat@redhat.com>
298 Date:   Fri Feb 10 01:28:01 2006 +0000
299
300     pause after claim failed (Nathan Lynch)
301     
302     pause after claim failed (Nathan Lynch)
303     
304     git-archimport-id: pnasrat@redhat.com/yaboot--devel--1.3--patch-2
305
306 commit c864c0961c4405bda1179fa4dc438fad3005e119
307 Author: Paul Nasrat <pnasrat@redhat.com>
308 Date:   Mon Jan 30 19:34:23 2006 +0000
309
310     git-archimport-id: pnasrat@redhat.com/yaboot--devel--1.3--patch-1
311
312 commit 7558941ebce6bd1e085cde875133745e4824cedd
313 Author: Ethan Benson <erbenson@alaska.net>
314 Date:   Mon Sep 26 06:41:14 2005 +0000
315
316     Replace netboot bootpath parser.
317     
318     * second/file.c: Replace bootpath parser for netboot cases, the new
319       one should (hopefully) correctly handle most/all netboot
320       situations. (Nathan Lynch)
321     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-88
322
323 commit b95e2fe6b9c48a252ff6a3a9efe9f06e582ce4f4
324 Author: Ethan Benson <erbenson@alaska.net>
325 Date:   Mon Sep 26 06:36:30 2005 +0000
326
327     Don't use ELF entry point.
328     
329     * second/yaboot.c: Don't use ELF entry point anymore. (Olaf Hering)
330     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-87
331
332 commit 34b04c432bcc86d1654c414f4dcd4cf1fdfec68a
333 Author: Ethan Benson <erbenson@alaska.net>
334 Date:   Mon Sep 26 06:32:56 2005 +0000
335
336     Fix Cross-compile
337     
338     * Makefile: Fix ability to cross compile.
339     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-86
340
341 commit c00489685b458a42bcf2517c2852b425b8a744a2
342 Author: Ethan Benson <erbenson@alaska.net>
343 Date:   Wed Aug 3 03:12:29 2005 +0000
344
345     Bugfix to patch-83
346     
347     * Correct dereference of NULL in RAID partition patch (patch-83).
348       (Patch from Dustin).
349     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-85
350
351 commit 15b93b378020b59031b991abe31b130ca105be03
352 Author: Ethan Benson <erbenson@alaska.net>
353 Date:   Fri Jul 29 04:29:18 2005 +0000
354
355     Pretend to allocate/deallocate memory correctly
356     
357     * Pretend like we actually manage memory properly by calling free() on
358       things which were malloc()'ed or strdup()'ed.
359       (Patch from Dustin Kirkland).
360     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-84
361
362 commit 4d075ad792d6f99502a863a71d820658915dfcc1
363 Author: Ethan Benson <erbenson@alaska.net>
364 Date:   Sat Jul 9 23:51:20 2005 +0000
365
366     handle RAID partitions on x86 partition tables
367     
368     * Support reading of type RAID partitions, except from fs_of.
369       This only works on x86 partition tables, Pmac partition tables will
370       need alternate methods.  (Patch from Dustin Kirkland).
371     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-83
372
373 commit 1476a0ba1159e01aaffaf9c8a8d0fe2a6418d493
374 Author: Ethan Benson <erbenson@alaska.net>
375 Date:   Mon Jul 4 03:42:18 2005 +0000
376
377     Remove check for BootX broken device-trees
378     
379     * ybin/ofpath: Remove check for broken-by-BootX device-tree, it no
380       longer works under current 2.6 kernels and nobody attempts to use
381       BootX anymore.
382     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-82
383
384 commit ad8f878934b10bf3baba4eb82073244932c2c4a2
385 Author: Ethan Benson <erbenson@alaska.net>
386 Date:   Mon Jul 4 03:34:00 2005 +0000
387
388     Merge Dustin's RAID patch
389     
390     * ybin/ybin: Allow for multiple bootstrap partitions.  Patch by Dustin
391       Kirkland.  May not fully work on PMAC hardware.
392     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-81
393
394 commit 70ca99a5e21616ae261f6c49c8955b516b4219d6
395 Author: Ethan Benson <erbenson@alaska.net>
396 Date:   Fri May 20 03:10:03 2005 +0000
397
398     amiga partition table support.
399     
400     * Support for amiga partition tables.  (Sven Luther)
401     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-80
402
403 commit de490d90c482bd49a218cff13c3c69f81aabc99d
404 Author: Ethan Benson <erbenson@alaska.net>
405 Date:   Thu May 19 04:26:37 2005 +0000
406
407     gcc-3.4 fix
408     
409     * GCC 3.4 compilation fix.  (Paul Nasrat)
410     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-79
411
412 commit 1cd0d9449cea60545406aa593c493ec90687ff6d
413 Author: Ethan Benson <erbenson@alaska.net>
414 Date:   Wed Feb 2 05:26:31 2005 +0000
415
416     Update addnote for newer pSeries hardware
417     
418     * util/addnote.c: Patch from Paul Mackerras to add second .note
419       required by more recent pSeries hardware.
420     
421     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-78
422
423 commit 5aa4e2a849cbef09035dfc9b324df5f5167c64e9
424 Author: Ethan Benson <erbenson@alaska.net>
425 Date:   Sun Sep 26 08:10:31 2004 +0000
426
427     Update penguinppc.org links s/projects/bootloaders/g
428     
429     * doc/yaboot-howto*.sgml: Update penguinppc.org links;
430       s/projects/bootloaders/g
431     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-77
432
433 commit 7ea099eca9d11187c6671ddaab2e200bdd7e62d9
434 Author: Ethan Benson <erbenson@alaska.net>
435 Date:   Sat Jul 24 20:07:25 2004 +0000
436
437     Fix typos in yaboot man page
438     
439     man/yaboot.8: Fix various typos (thanks Helge Kreutzman).
440     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-76
441
442 commit 7c27bb06784a2663d15bda607e4a8314a2995212
443 Author: Ethan Benson <erbenson@alaska.net>
444 Date:   Sun Jul 11 20:14:40 2004 +0000
445
446     Prep 1.3.13 release
447     
448     * Bump version numbers for 1.3.13 release.
449     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-75
450
451 commit 544fce211922d545a797426226b3ebf44719d7b4
452 Author: Ethan Benson <erbenson@alaska.net>
453 Date:   Sun Jul 11 20:02:24 2004 +0000
454
455     Update changelog for 1.3.13
456     
457     * changelog: Update for 1.3.13
458     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-74
459
460 commit 082669fa9dbe50221b75f444f819533333705c10
461 Author: Ethan Benson <erbenson@alaska.net>
462 Date:   Sun Jul 11 19:55:54 2004 +0000
463
464     Increase tftp buffer to ~6MB
465     
466     * second/fs_of.c: increase tftp buffer to 6MB.  This is as far as it
467       can go.
468     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-73
469
470 commit 6a6a039f03909f5cdf62ef94522eb1a70b7e792d
471 Author: Ethan Benson <erbenson@alaska.net>
472 Date:   Sun Jul 11 19:52:17 2004 +0000
473
474     Add LABEL/UUID support to yabootconfig
475     
476     * ybin/yabootconfig: Add support for LABEL= and UUID= in
477       /etc/fstab. (Colin Watson)
478     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-72
479
480 commit 8fe6242322e48ad34ae82d63b8a5a554aea987b3
481 Author: Ethan Benson <erbenson@alaska.net>
482 Date:   Sat May 8 22:04:51 2004 +0000
483
484     Add additional check on /dev/nvram to avoid misleading error message
485     
486     * ybin/ybin: Add additional check on /dev/nvram, if we cannot read a
487       couple bytes report it as broken.  This avoids misleading
488       `Incompatible nvsetenv' message on kernels without /dev/nvram support.
489     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-71
490
491 commit 58cb1681bd92b96efbf251e847214c2447533cce
492 Author: Ethan Benson <erbenson@alaska.net>
493 Date:   Sat May 8 06:38:44 2004 +0000
494
495     Fix several ofpath error messages going to stdout rather then stderr
496     
497     * ybin/ofpath: Fix several error messages mistakenly written to stdout
498       rather then stderr. (Thanks to Colin Watson for noticing)
499     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-70
500
501 commit e19f440a0df591a3e5174218d3bcc6d01ffb07ee
502 Author: Ethan Benson <erbenson@alaska.net>
503 Date:   Mon Apr 26 00:27:48 2004 +0000
504
505     Add support for initrd detection to yabootconfig
506     
507     * ybin/yabootconfig: If detected kernel appears to have a corresponding
508       initrd image then include an initrd= line in generated yaboot.conf.
509     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-69
510
511 commit 2303a06e095e2c174b68281156b68542e75e3210
512 Author: Ethan Benson <erbenson@alaska.net>
513 Date:   Sun Apr 18 00:27:59 2004 +0000
514
515     Prep 1.3.12 release
516     
517     * Update changelog.
518     * Bump version numbers to 1.3.12.
519     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-68
520
521 commit eb8b0d5d9f4823a7033ef2baa1cababd4b5574e1
522 Author: Ethan Benson <erbenson@alaska.net>
523 Date:   Sun Mar 28 05:02:03 2004 +0000
524
525     Fix ofpath SATA support and sysfs detection
526     
527     * ybin/ofpath: Support newwer kernels which call the driver sata_svw,
528       instead of ata-k2.
529     * ybin/ofpath: Detect sysfs mount correctly.
530     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-67
531
532 commit 53695b2ef3f2fbf757b26c66ad3fa45ccb6b93e6
533 Author: Ethan Benson <erbenson@alaska.net>
534 Date:   Mon Mar 22 02:05:07 2004 +0000
535
536     Add 2.6 kernel support to ofpath
537     
538     * ybin/ofpath: Add support for 2.6.4+ kernels with sysfs mounted.
539     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-66
540
541 commit 0b1ed1e2cab69376a0d0cfdbe648893ff6d04ced
542 Author: Ethan Benson <erbenson@alaska.net>
543 Date:   Sun Feb 22 13:15:30 2004 +0000
544
545     Add caveat regarding UFS to yaboot howto
546     
547     * Add caveat regarding UFS to temporary bootloader setup chapter of
548       the yaboot-howto (Thanks to Brian Sammon, and to Stefan Pfetzing for
549       the German translation).
550     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-65
551
552 commit d72c450a4760c7b48f1c4791e3fd11a2d5157582
553 Author: Ethan Benson <erbenson@alaska.net>
554 Date:   Sun Jan 4 12:37:38 2004 +0000
555
556     Update =tagging-method for tla 1.1
557     
558     * Update =tagging-method for tla 1.1
559     
560     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-64
561
562 commit f3981c708d9ba5da5bed3ad89347362b1cb11541
563 Author: Ethan Benson <erbenson@alaska.net>
564 Date:   Thu Nov 20 10:03:32 2003 +0000
565
566     Bump versions to final 1.3.11 release
567     
568     * Bump versions to final 1.3.11 release.
569     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-63
570
571 commit 941806a910f667c64b8ed55897ff2f5d458bc027
572 Author: Ethan Benson <erbenson@alaska.net>
573 Date:   Wed Nov 19 10:40:13 2003 +0000
574
575     Prepare changelog for imminent 1.3.11 release
576     
577     * Prepare changelog for imminent 1.3.11 release.
578     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-62
579
580 commit 2bdcccbdfe7dbcfee05fe5c4e03675d36999cc76
581 Author: Ethan Benson <erbenson@alaska.net>
582 Date:   Tue Nov 18 10:12:32 2003 +0000
583
584     Fix ofpath arch detect fix
585     
586     ybin/ofpath: Fix botched powerpc-64 support fix.
587     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-61
588
589 commit a36e22176e6917e0218cd69f6cab014b1c5d7a49
590 Author: Ethan Benson <erbenson@alaska.net>
591 Date:   Tue Nov 18 10:09:41 2003 +0000
592
593     Make ofpath work on powerpc-64
594     
595     ybin/ofpath: No longer refuse to function on ppc64 systems.
596     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-60
597
598 commit d72597c11f3f2984aaaa007f26b4784ca808167b
599 Author: Ethan Benson <erbenson@alaska.net>
600 Date:   Mon Nov 17 04:35:21 2003 +0000
601
602     Fix ofpath for `scsi' ide controllers
603     
604     * ybin/ofpath:
605       - Generate correct paths for IDE controllers which
606         pretend to be scsi.
607       - Correct error message regarding CONFIG_SCSI_PROC_FS
608         (=y not =n).
609     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-59
610
611 commit fc172c3d66234d82994c6adf3498718515253205
612 Author: Ethan Benson <erbenson@alaska.net>
613 Date:   Mon Nov 10 10:23:36 2003 +0000
614
615     Fix ofpath 2.6 /proc/scsi check
616     
617     * ybin/ofpath: Move return to proper place so ofpath doesn't exit
618       silently when scsi appears to not be installed and the system is
619       running a 2.6 kernel.
620     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-58
621
622 commit 1f0aaa620e99229cb0777c0e438e89f3d7b6e082
623 Author: Ethan Benson <erbenson@alaska.net>
624 Date:   Mon Nov 10 08:52:02 2003 +0000
625
626     Detect lack of CONFIG_SCSI_PROC_FS in ofpath on 2.6 systems
627     
628     * ybin/ofpath: Under 2.6 systems detect lack of CONFIG_SCSI_PROC_FS in
629       kernel configuration and print error message indicating its required.
630     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-57
631
632 commit c5c62181de2ab0c79509545cc3fad086a80a3e1b
633 Author: Ethan Benson <erbenson@alaska.net>
634 Date:   Thu Nov 6 07:28:26 2003 +0000
635
636     Add PowerMac G5 SATA support to ofpath
637     
638     * ybin/ofpath: Add support for SATA drives found in the PowerMac G5.
639       (Olof Johansson <offe@localnet.sh>)
640     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-56
641
642 commit 8a48f4329821baf8bb91028bdd854dcbadfeb182
643 Author: Ethan Benson <erbenson@alaska.net>
644 Date:   Wed Nov 5 07:49:57 2003 +0000
645
646     Bump version to unsupported non-release status
647     
648     * Bump version to unsupported non-release status.
649     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-55
650
651 commit 3252b072cface78b4d6fb0bc3863af2f5d0cc773
652 Author: Ethan Benson <erbenson@alaska.net>
653 Date:   Wed Nov 5 07:38:12 2003 +0000
654
655     Update compatibility declaration for CHRPBOOT examples
656     
657     * doc/examples/simpleboot.chrp: MacRISC4 compatible.
658     * doc/examples/dualboot.chrp: MacRISC4 compatible.
659     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-54
660
661 commit 438c6a4c03afdb1c70e3e803c2790252c6044931
662 Author: Ethan Benson <erbenson@alaska.net>
663 Date:   Tue Nov 4 09:19:11 2003 +0000
664
665     Use OpenFirmware RELEASE method
666     
667     * second/prom.c: Use OpenFirmware's RELEASE method instead of the
668       broken crap hack which broke on more recent Apple OpenFirmware.
669     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-53
670
671 commit 5af5ce399e68962e29aab2bfead786a0148b8035
672 Author: Ethan Benson <erbenson@alaska.net>
673 Date:   Sat Oct 4 23:58:34 2003 +0000
674
675     Add boot compatibility with PowerMac G5
676     
677     * ofboot: Declare compatiblity with PowerMac G5 in.
678     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-52
679
680 commit d10893f1c4ae8f997378473d6cccda4d60843b46
681 Author: Ethan Benson <erbenson@alaska.net>
682 Date:   Sun Jun 22 08:06:01 2003 +0000
683
684     Update ChangeLog tag for compatiblity with arch 1.0pre25
685     
686     * Update ChangeLog tag for compatiblity with arch 1.0pre25.
687     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-51
688
689 commit 08532f2d438e244fb1d84dfa2c507ede37262162
690 Author: Ethan Benson <erbenson@alaska.net>
691 Date:   Wed Feb 26 11:27:33 2003 +0000
692
693     Fix ofpath on early iMacs
694     
695     * ofpath: Apple apparently can't decide whether its called `ata'
696       or `ide'; fix support for early iMac models.
697     
698     * Prep 1.3.10.
699     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-50
700
701 commit d56885f68390b6c6109dcf4feb4c9c56009453ca
702 Author: Ethan Benson <erbenson@alaska.net>
703 Date:   Wed Feb 12 08:55:45 2003 +0000
704
705     Prep 1.3.9 release
706     
707     * Prep 1.3.9 release:
708       - Set version numbers to 1.3.9.
709       - Finalize changelog.
710     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-49
711
712 commit e80797f9e8b7a05aeb239ca9087ba57e7641a231
713 Author: Ethan Benson <erbenson@alaska.net>
714 Date:   Mon Feb 10 09:55:05 2003 +0000
715
716     Fix botched IBM patch (multiple partition handling on rs6k)
717     
718     * IBM file.c patch is broken, fix file.c so yaboot finds its config on
719       systems with more then one primary GNU/Linux filesystem partition.
720     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-48
721
722 commit ca58ccca8abb692653406eec7a414ffc985d6378
723 Author: Ethan Benson <erbenson@alaska.net>
724 Date:   Sun Feb 9 05:28:41 2003 +0000
725
726     Update first stage to be compatible with new Macs
727     
728     * Mark first stage loader compatible with new MacOS9-free PowerMacs so
729       it will be accepted by OpenFirmware.
730     * Update copyrights to include 2003.
731     * Version 1.3.9-UNRELEASED.
732     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-47
733
734 commit a8a407dd48a8fc733eefd5a996cc8f11b44a76f6
735 Author: Ethan Benson <erbenson@alaska.net>
736 Date:   Tue Dec 10 08:14:21 2002 +0000
737
738     Release yaboot 1.3.8
739     
740     * yaboot 1.3.8 release.
741     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-46
742
743 commit f8932c05318accd41300f2bef7da218fda9b0ab5
744 Author: Ethan Benson <erbenson@alaska.net>
745 Date:   Wed Nov 27 09:42:23 2002 +0000
746
747     Prepare 1.3.8-rc4
748     
749     * Bump versions to 1.3.8-rc4.
750     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-45
751
752 commit cb900d00d1295cc89f55c5968e1c9b4baf92c421
753 Author: Ethan Benson <erbenson@alaska.net>
754 Date:   Wed Nov 27 09:35:34 2002 +0000
755
756     Add 'kernel too old' warning to ofpath
757     
758     * ofpath: On Windtunnel warn when the kernel is too old for proper
759       support.  The warning message is sent to stderr so it will not
760       interfere with scripts or other automated invocation of ofpath.
761     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-44
762
763 commit 5a1d6ab9e290804deea3bfd4f888709a732b3f58
764 Author: Ethan Benson <erbenson@alaska.net>
765 Date:   Tue Nov 26 09:35:47 2002 +0000
766
767     Fix ofpath on pci-ide
768     
769     * ofpath: check for pci-ide, not pci-ata.
770     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-43
771
772 commit 6afa18e70568dc24f695c1f2da1498d3732952ff
773 Author: Ethan Benson <erbenson@alaska.net>
774 Date:   Tue Nov 19 11:32:49 2002 +0000
775
776     Fix readlink fallback
777     
778     * ofpath: fallback shell function for readlink was broken.  Fixes
779       IDEBUS==NULL on broken systems that lack /bin/readlink.
780     * Prepare 1.3.8-rc3.
781     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-42
782
783 commit 08e5a8def5eb4218e7b1efaa4134a39f552b144c
784 Author: Ethan Benson <erbenson@alaska.net>
785 Date:   Mon Nov 18 10:38:53 2002 +0000
786
787     handle ide device nodes up to hdp
788     
789     * ofpath: handle ide device nodes up to /dev/hdp (16 disks, current
790       max in the kernel).
791     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-41
792
793 commit c8468c1549669e3f06387ab6a162e5d6498c6de7
794 Author: Ethan Benson <erbenson@alaska.net>
795 Date:   Sun Nov 17 23:33:17 2002 +0000
796
797     Add support for IDE controllers with identity crisis
798     
799     * ofpath: Add support for IDE controllers that pretend they are scsi.
800     * Prepare 1.3.8-rc2.
801     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-40
802
803 commit 74a45b785c6537e7632f1633413790bd5e30bf21
804 Author: Ethan Benson <erbenson@alaska.net>
805 Date:   Sun Nov 17 03:13:10 2002 +0000
806
807     Prepare 1.3.8-rc1
808     
809     * Prefer $PATH_PREFIX/usr/sbin/ofpath if it exists.
810     * yabootconfig: Add append="video=ofonly" if the running kernel
811       was booted with it.  This solves user confusion when they boot an installer with an
812       install-safe label, install, then reboot the new system to find the
813       console display doesn't work.  This only occurs if user does not
814       specify --kernel-args so it will not interfere with distro installers
815       which handle this themselves.
816     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-39
817
818 commit 33ce5d317965c250cf097a0e287e62dbdabe76e9
819 Author: Ethan Benson <erbenson@alaska.net>
820 Date:   Sun Nov 17 02:02:17 2002 +0000
821
822     Add support for pci-ide to ofpath
823     
824     * ofpath: Support multi-channel pci-ide devices, found in the Xserve.
825     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-38
826
827 commit 2b3bb9db6a8c0b25e074e15a60aa259881440f03
828 Author: Ethan Benson <erbenson@alaska.net>
829 Date:   Sun Nov 3 02:00:27 2002 +0000
830
831     Add extra sanity checks to new ofpath ide resolution code
832     
833     * ofpath: Add a few sanity checks to new ide resolution code.
834     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-37
835
836 commit b5653498509f29d5f94b7e32e506cb56e4ea93a2
837 Author: Ethan Benson <erbenson@alaska.net>
838 Date:   Wed Oct 30 10:32:14 2002 +0000
839
840     Update ofpath for new devspec export in /proc
841     
842     * ofpath: /proc/ide/pmac is dead, the OpenFirmware devspec is now
843       exported to /proc/ide/ideX/devspec, ofpath now uses that.
844       - this change is not tested, some additional sanity checks are still
845         needed.
846     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-36
847
848 commit 1aa69fb0cd1252fd3f051e4bbfa717bb3daed8c3
849 Author: Ethan Benson <erbenson@alaska.net>
850 Date:   Sun Oct 27 00:57:19 2002 +0000
851
852     Change ofpath to use /proc/ide/of1275 instead of /proc/ide/pmac
853     
854     * ofpath: the current incarnation of /proc/ide/pmac is not supported
855       by ofpath, and I believe this file should be renamed since it should
856       not be inherently pmac specific.  When the format of this file is
857       updated it can be renamed at the same time.
858     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-35
859
860 commit 4182c8620d01b73af5410b7a7bfa19b46e1d956c
861 Author: Ethan Benson <erbenson@alaska.net>
862 Date:   Sun Oct 27 00:40:09 2002 +0000
863
864     Add preliminary support for Windtunnel PowerMacs to ofpath
865     
866     * CHANGES IN THIS COMMIT ARE PRELIMINARY **DO NOT DISTRIBUTE**
867     
868     * ofpath: Add preliminary support for Windtunnel PowerMacs
869       - If /proc/ide/pmac (perhaps to be renamed) does not exist and
870         machine is a Windtunnel return ultra2: instead of hd: (this assumes
871         machines without /proc/ide/pmac are also without support for ATA-100,
872         ultra2: is the ATA-66 bus).
873       - Parse a modified version of /proc/ide/pmac to determine the
874         appropriate OpenFirmware device specifier, no kernel yet has the
875         correct version of this file.
876     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-34
877
878 commit 9668c7903f8dc4e659d7b201ca0e8acb70f0d21c
879 Author: Ethan Benson <erbenson@alaska.net>
880 Date:   Sun Sep 29 05:04:59 2002 +0000
881
882     Fix spelling errors in changelog
883     
884     * Oops, fix some spelling errors and reburn 1.3.7.
885     
886     
887     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-33
888
889 commit 83e9d6ed91d623822919c0c8d8a1496b4c5b6f4c
890 Author: Ethan Benson <erbenson@alaska.net>
891 Date:   Sat Sep 28 22:51:44 2002 +0000
892
893     Prepare 1.3.7 release
894     
895     * Bump versions to 1.3.7
896     * Update changelog.
897     * Mention new yaboot mailing lists in README.
898     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-32
899
900 commit c70a22843fb774506e991507b4bac05b0cfd02b2
901 Author: Ethan Benson <erbenson@alaska.net>
902 Date:   Sun Sep 15 03:56:45 2002 +0000
903
904     Remove 0arch-timestamps0 in archclean target
905     
906     * Remove 0arch-timestamps0 in archclean target.
907     
908     
909     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-31
910
911 commit b58b7f84f40f96f61a1d5fc1f88a1abd9c1a4193
912 Author: Ethan Benson <erbenson@alaska.net>
913 Date:   Sun Sep 15 03:28:32 2002 +0000
914
915     Prepare 1.3.7-pre1
916     
917     * Update copyright notices for 2002.
918     * Change Boot: to Stage 1 Boot: in ofboot.b
919     * Update changelog.
920     * Bump version to 1.3.7-pre1.
921     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-30
922
923 commit 5e0ecd954d89d9a01178d2673167065665ee899c
924 Author: Ethan Benson <erbenson@alaska.net>
925 Date:   Sun Sep 8 00:17:53 2002 +0000
926
927     update timestamp save file.
928     
929     * update timestamp save file.
930     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-29
931
932 commit d0e5fbe697b5cf916bf70c1bae736c82cbbc876b
933 Author: Ethan Benson <erbenson@alaska.net>
934 Date:   Sun Sep 8 00:13:58 2002 +0000
935
936     Fix partition file search
937     
938     * Change file_block_open() to check for FILE_OK rather then NULL
939     return from fs_open().  When no partition is specified in a file open
940     call yaboot will loop through all known partitions until the file is
941     found, or no more partitions are left.  In older versions fs_open()
942     would check for FILE_OK, so checking for NULL return from fs_open()
943     worked, in current versions fs_open() checks for BADFS so proper
944     errors can be reported.  This only really affects IBM CHRP.
945     
946     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-28
947
948 commit e68362d01834e41a4a0e914c2bddbeabea56a1d6
949 Author: Ethan Benson <erbenson@alaska.net>
950 Date:   Sun Aug 18 22:33:31 2002 +0000
951
952     make version numbers loudly unsupported due to dumb dist maintainers
953     
954     * make version numbers loudly unsupported due to dumb dist
955       maintainers, real versions not in place till release time.  UNRELEASED
956       SOFTWARE SHOULD NOT BE PACKAGED.
957     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-27
958
959 commit c2555be2247b6e98ef2f5cbc6d314b0e97428bbb
960 Author: Ethan Benson <erbenson@alaska.net>
961 Date:   Thu Aug 15 07:26:38 2002 +0000
962
963     Bump yabootconfig version
964     
965     * Bump yabootconfig version number.
966     
967     
968     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-26
969
970 commit e348755b9f809dd5b83111c8cfd3dc14e641f01a
971 Author: Ethan Benson <erbenson@alaska.net>
972 Date:   Thu Aug 15 07:24:35 2002 +0000
973
974     Fix rare fstab parsing bug in yabootconfig
975     
976     * Fix a rare parsing bug in yabootconfig's /etc/fstab parsing. If the
977       user had commented entries for the / filesystem yabootconfig would end
978       up detecting one of those.
979     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-25
980
981 commit 1a5ba1223587f7153a5557a4d31626f9a407ba39
982 Author: Ethan Benson <erbenson@alaska.net>
983 Date:   Mon Jul 29 08:01:44 2002 +0000
984
985     Don't recommend reporting bugs to benh in yabootconfig(8)
986     
987     * Don't recommend reporting bugs to benh in yabootconfig(8).
988     
989     
990     
991     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-24
992
993 commit 9f447e44f585a4f2081258aa3b598a7b9d127c11
994 Author: Ethan Benson <erbenson@alaska.net>
995 Date:   Wed Jul 3 08:17:12 2002 +0000
996
997     Fix reiserfs symlink resolution
998     
999     * Fix reiserfs symlink resolution which could fail in certain circumstances.
1000     
1001     
1002     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-23
1003
1004 commit 559ae8fa7f19a44a8f41f384aae303495614090d
1005 Author: Ethan Benson <erbenson@alaska.net>
1006 Date:   Wed May 29 08:50:39 2002 +0000
1007
1008     Update timestamp file to exclude {arch}/*
1009     
1010     Update timestamp file to exclude {arch}/*.
1011     
1012     
1013     
1014     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-22
1015
1016 commit 17d238b6131f7bd3ca40b7bab317182e14bb3d61
1017 Author: Ethan Benson <erbenson@alaska.net>
1018 Date:   Sat May 4 13:00:23 2002 +0000
1019
1020     Add 0arch-timestamps0 setftime timestamp database
1021     
1022     Add 0arch-timestamps0 setftime timestamp database.  This allows us to
1023     work around arch's lack of preserving timestamps.
1024     
1025     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-21
1026
1027 commit 766747b4a4b47f77721d3e02a73f926592240336
1028 Author: Ethan Benson <erbenson@alaska.net>
1029 Date:   Sat Apr 20 13:52:09 2002 +0000
1030
1031     Update upstream notice in yaboot-howto, translate it to de.
1032     
1033     * Update upstream notice in yaboot-howto, translate it to de.
1034     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-20
1035
1036 commit 1e9f6b68e9b33d32926f9ca49c89ebccc4d11f5b
1037 Author: Ethan Benson <erbenson@alaska.net>
1038 Date:   Sun Mar 31 05:21:42 2002 +0000
1039
1040     Remove more arch crap in clean target
1041     
1042     * Remove ,,* in clean target, this is more crap arch leaves laying around.
1043     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-19
1044
1045 commit a63b0cf320e8ad5f0e2c9f4430309cdbbbd770d0
1046 Author: Ethan Benson <erbenson@alaska.net>
1047 Date:   Sun Mar 31 05:11:46 2002 +0000
1048
1049     Fix make clean from previous patch
1050     
1051     find man page is on crack.  Fix find calls my way which appears to work correctly.
1052     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-18
1053
1054 commit 3ce60078293dd1b2cdf46841fe41afd80913c698
1055 Author: Ethan Benson <erbenson@alaska.net>
1056 Date:   Sun Mar 31 05:00:26 2002 +0000
1057
1058     Update clean targets
1059     
1060     * Remove chmod calls from make clean, arch is supposed to keep track
1061       of permissions correctly so they shouldn't be needed now.
1062     
1063     * Add '-path './{arch}' -prune -o ' to all the find calls so cleaning
1064       doesn't recurse into arch's revision control directories and possibly
1065       corrupt them.
1066     
1067     * Add archclean target which removes all of arch's cruft so release
1068       tarballs won't be ridiculously bloated (arch keeps a complete
1069       duplicate copy of the source making the tarball twice the size it
1070       should be, no good for release tarballs).  If people want a `archable'
1071       tree they should just use arch to check one out.
1072     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-17
1073
1074 commit 1237a9cea4d8a7c25d422410ef338901582ad45e
1075 Author: Ethan Benson <erbenson@alaska.net>
1076 Date:   Wed Mar 27 14:10:34 2002 +0000
1077
1078     sync with latest yaboot CVS
1079     
1080     Add german howto for yaboot-howto.
1081     
1082     Typo fixes/minor updates to yaboot-howto.
1083     
1084     small fixes to elfextract.
1085     
1086     
1087     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-16
1088
1089 commit 2ad0d7649e5042cad43a16b4a03bf53f39948316
1090 Author: Ethan Benson <erbenson@alaska.net>
1091 Date:   Wed Mar 27 13:55:42 2002 +0000
1092
1093     Commit yaboot 1.3.6
1094     
1095     Commit yaboot 1.3.6.
1096     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-15
1097
1098 commit 96f82eabe29d6d4039098d5320b3304acbedf67b
1099 Author: Ethan Benson <erbenson@alaska.net>
1100 Date:   Wed Mar 27 13:45:22 2002 +0000
1101
1102     Commit yaboot 1.3.6-pre2
1103     
1104     Commit yaboot 1.3.6-pre2.
1105     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-14
1106
1107 commit 678d83ff8608534ece0f1e912eddedef4f0bb67a
1108 Author: Ethan Benson <erbenson@alaska.net>
1109 Date:   Wed Mar 27 13:37:21 2002 +0000
1110
1111     Commit yaboot 1.3.6-pre1
1112     
1113     Commit yaboot 1.3.6-pre1.
1114     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-13
1115
1116 commit 9323f7c29a886304325b1562450729a12e0ccbea
1117 Author: Ethan Benson <erbenson@alaska.net>
1118 Date:   Wed Mar 27 13:30:47 2002 +0000
1119
1120     Commit yaboot 1.3.5
1121     
1122     Commit yaboot 1.3.5.
1123     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-12
1124
1125 commit 6f4d7a802c09ee20526db5eeba7357d52444a42c
1126 Author: Ethan Benson <erbenson@alaska.net>
1127 Date:   Wed Mar 27 13:25:55 2002 +0000
1128
1129     Commit yaboot 1.3.5-pre3
1130     
1131     Commit yaboot 1.3.5-pre3.
1132     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-11
1133
1134 commit 63162c5eb23b6ba4a00b4b4e18ffbcdba52b1e2e
1135 Author: Ethan Benson <erbenson@alaska.net>
1136 Date:   Wed Mar 27 13:22:23 2002 +0000
1137
1138     Commit yaboot 1.3.5-pre2
1139     
1140     Commit yaboot 1.3.5-pre2.
1141     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-10
1142
1143 commit da7857367944c983abf98f956241dcc614b2f453
1144 Author: Ethan Benson <erbenson@alaska.net>
1145 Date:   Tue Mar 26 15:11:26 2002 +0000
1146
1147     Commit yaboot 1.3.5-pre1
1148     
1149     Commit yaboot 1.3.5-pre1.
1150     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-9
1151
1152 commit 0ef1539b6f680ba09c88be5bb94a821fd2599931
1153 Author: Ethan Benson <erbenson@alaska.net>
1154 Date:   Tue Mar 26 15:05:27 2002 +0000
1155
1156     Commit yaboot 1.3.4
1157     
1158     Commit yaboot 1.3.4.
1159     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-8
1160
1161 commit 5613f9fab88b71f14259856b390f1cc989b602bf
1162 Author: Ethan Benson <erbenson@alaska.net>
1163 Date:   Tue Mar 26 15:00:49 2002 +0000
1164
1165     Commit yaboot 1.3.4-pre3
1166     
1167     Commit yaboot 1.3.4-pre3.
1168     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-7
1169
1170 commit 4b9f2eb054f5f0975eef271e87ded51d6b697d9f
1171 Author: Ethan Benson <erbenson@alaska.net>
1172 Date:   Tue Mar 26 14:42:58 2002 +0000
1173
1174     Commit yaboot 1.3.4-pre2
1175     
1176     Commit yaboot 1.3.4-pre2.
1177     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-6
1178
1179 commit 8d5a42062f8b88eaea91434e53973ce9f55589d9
1180 Author: Ethan Benson <erbenson@alaska.net>
1181 Date:   Mon Mar 25 15:13:19 2002 +0000
1182
1183     Commit yaboot 1.3.4-pre1
1184     
1185     Commit yaboot 1.3.4-pre1.
1186     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-5
1187
1188 commit 67d317029778e6f068badf7b8e3eec6482ecb00e
1189 Author: Ethan Benson <erbenson@alaska.net>
1190 Date:   Mon Mar 25 14:50:10 2002 +0000
1191
1192     Commit yaboot 1.3.3
1193     
1194     Commit yaboot 1.3.3.
1195     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-4
1196
1197 commit 103d77e0ce929f3f57b2b75bc38e92b9c2d973c3
1198 Author: Ethan Benson <erbenson@alaska.net>
1199 Date:   Mon Mar 25 14:28:05 2002 +0000
1200
1201     Commit yaboot 1.3.2
1202     
1203     Commit yaboot 1.3.2.
1204     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-3
1205
1206 commit bad5757ade771cb803eea778f61da9a4ff74b87e
1207 Author: Ethan Benson <erbenson@alaska.net>
1208 Date:   Mon Mar 25 14:05:52 2002 +0000
1209
1210     Commit yaboot 1.3.1
1211     
1212     Commit yaboot 1.3.1.
1213     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-2
1214
1215 commit f4ebbd9f7ea23e3f0fcbe098754580c220894628
1216 Author: Ethan Benson <erbenson@alaska.net>
1217 Date:   Mon Mar 25 07:43:37 2002 +0000
1218
1219     Commit yaboot 1.3.0
1220     
1221     Commit yaboot 1.3.0.
1222     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--patch-1
1223
1224 commit f42aaadb5c8c5f7f15e5159cbc251e64e1a4ac8f
1225 Author: Ethan Benson <erbenson@alaska.net>
1226 Date:   Mon Mar 25 03:28:42 2002 +0000
1227
1228     Create yaboot arch repo
1229     
1230     Create yaboot arch repo.
1231     git-archimport-id: erbenson@alaska.net--public/yaboot--devel--1.3--base-0