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