-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
7717 lines (5093 loc) · 262 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2013-09-05 14:39:22 +0200 Laurent Vivier <laurent@vivier.eu>
* Update email address
2013-09-05 14:30:46 +0200 Laurent Vivier <laurent@vivier.eu>
* Update GPLv2
2013-09-04 18:10:46 +0200 Laurent Vivier <laurent@vivier.eu>
* Use ext2_fs.h from e2fslibs-dev package
2013-09-02 21:12:46 +0200 Laurent Vivier <laurent@vivier.eu>
* macos: correct typo in GetCurrentMode()
2011-12-18 14:40:02 +0100 Laurent Vivier <laurent@vivier.eu>
* update (c) date
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* gcc-4.6: correct strict aliasing errors.
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* Remove unused variables (detected with gcc-4.6) in m68k part
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* Remove unused variables (detected with gcc-4.6)
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* add emile.conf man page into .deb
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* Add more details on "root" option
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* debian: correct non-m68k build
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* Change VERSION from 0.13CVS to 0.13
2011-12-18 14:39:01 +0100 Laurent Vivier <laurent@vivier.eu>
* debian: allows to compile emile with gcc-4.1
2011-12-18 14:38:58 +0100 Laurent Vivier <laurent@vivier.eu>
* include linux/fs.h before linux/ext2_fs.h
2011-12-18 14:38:53 +0100 Laurent Vivier <laurent@vivier.eu>
* remove close() of unitialized fd
2011-12-18 14:38:44 +0100 Laurent Vivier <laurent@vivier.eu>
* Add -Wa,-mcpu=68030 and -Wa,-mcpu=68040
2009-06-19 00:25:11 +0200 Laurent Vivier <laurent@vivier.eu>
* Add EnterSupervisorMode()
2009-06-18 22:24:51 +0200 Laurent Vivier <laurent@vivier.eu>
* Define get_physical() and make_resident()
2009-06-18 22:24:15 +0200 Laurent Vivier <laurent@vivier.eu>
* Add include of macos/errors.h
2009-06-18 22:11:03 +0200 Laurent Vivier <laurent@vivier.eu>
* Add LockMemory() and LockMemoryContiguous()
2009-06-18 22:02:41 +0200 Laurent Vivier <laurent@vivier.eu>
* Replace space by tab
2009-06-18 22:00:27 +0200 Laurent Vivier <laurent@vivier.eu>
* Add GetPhysical() trap
2009-06-12 01:14:50 +0200 Laurent Vivier <laurent@vivier.eu>
* switch off interrupts before the PPC bootstrap
2009-06-12 00:59:26 +0200 Laurent Vivier <laurent@vivier.eu>
* Correctly create the PPC bootstrap section
2009-06-11 22:02:04 +0200 Laurent Vivier <laurent@vivier.eu>
* Preserve register %a2.
2009-06-10 02:19:09 +0200 Laurent Vivier <laurent@vivier.eu>
* Add 64bit build host support for the first level parameters (replace void* by u_int32_t)
2009-06-08 22:39:40 +0200 Laurent Vivier <laurent@vivier.eu>
* uptdate .gitignore
2009-06-08 22:37:03 +0200 Laurent Vivier <laurent@vivier.eu>
* second: because of mess between gcc and as: remove cpu directive and use the default provided by gcc (68020). Add rules to manage 68040 and 68030 assembly files in the Makefile. Classic will wait later...
2009-06-08 21:55:43 +0200 Laurent Vivier <laurent@vivier.eu>
* libunix: because of mess between gcc and as: remove cpu directive and use the default provided by gcc (68020). Classic will wait later...
2009-06-08 18:33:19 +0200 Laurent Vivier <laurent@vivier.eu>
* EMILE PPC is also compiled with m68k tools except clearly identified files
2009-06-08 18:32:34 +0200 Laurent Vivier <laurent@vivier.eu>
* Correct branch local label to go backward instead forward (assembler error)
2009-06-08 18:30:59 +0200 Laurent Vivier <laurent@vivier.eu>
* Correct signe of response according Gestalt signature
2008-10-27 20:51:15 +0100 Laurent Vivier <Laurent@lvivier.info>
* Allow to compile with gcc-4 by adding a contraint on memory for MacOS traps
2008-09-25 16:55:52 +0200 Laurent Vivier <Laurent@lvivier.info>
* Change VERSION from 0.13 to 0.13CVS
2008-09-17 14:53:27 +0200 Laurent Vivier <Laurent@lvivier.info>
* Define vga_set_palette() to define current display palette.
2008-09-17 14:51:45 +0200 Laurent Vivier <Laurent@lvivier.info>
* create .gitignore
2008-09-17 14:45:35 +0200 Laurent Vivier <Laurent@lvivier.info>
* Push parameters of _SetEntries into the stack instead of registers. Add graphical display type (clut, fixed, direct).
2008-09-14 23:59:22 +0200 Laurent Vivier <Laurent@lvivier.info>
* Add SetEntries() to set color palette
2008-09-14 23:55:35 +0200 Laurent Vivier <Laurent@lvivier.info>
* Add some definitions to video.h
2008-09-11 00:21:35 +0200 Finn Thain <fthain@telegraphics.com.au>
* This patch corrects the generated tools.mk when no tool to create manual from docbook is found
2008-09-05 14:20:41 +0200 Laurent Vivier <Laurent@lvivier.info>
* Move all docs management from Rules.mk to docs/Makefile, to avoid conflists between variables (SOURCES, OBJS, ...)
2008-09-05 14:02:55 +0200 Laurent Vivier <Laurent@lvivier.info>
* Update README
2008-09-02 19:40:35 +0000 Laurent Vivier <Laurent@lvivier.info>
* Add command line interface
2008-08-13 20:17:46 +0000 Laurent Vivier <Laurent@lvivier.info>
* use temp file to set configuration
2008-08-13 19:40:59 +0000 Laurent Vivier <Laurent@lvivier.info>
* change Standards-Version
2008-08-13 19:40:12 +0000 Laurent Vivier <Laurent@lvivier.info>
* Change FSF address
2008-08-13 13:07:08 +0000 Laurent Vivier <Laurent@lvivier.info>
* move to version 0.13
2008-08-13 13:06:59 +0000 Laurent Vivier <Laurent@lvivier.info>
* Update
2008-08-13 15:03 Laurent Vivier <Laurent@lvivier.info>
* docs/emile-mkisofs.sgml: add usage of --emiledriver and --config
2008-08-13 14:44 Laurent Vivier <Laurent@lvivier.info>
* debian/copyright: update copyright for EMILE, add copyright for
mkisofs
2008-08-13 14:33 Laurent Vivier <Laurent@lvivier.info>
* debian/emile-bootblocks.install: Add apple_driver
2008-08-13 14:29 Laurent Vivier <Laurent@lvivier.info>
* second/Makefile: install apple_driver
2008-08-13 14:29 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-mkisofs.c: by default use EMILE driver
2008-08-13 01:51 Laurent Vivier <Laurent@lvivier.info>
* libscsi/scsi_command.c: remove error message when complete
transaction fails
2008-08-13 01:40 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: correctly manage default values
2008-08-13 01:37 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: correctly get boot unit
2008-08-13 01:36 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_init.c: ext2_init() fails if device is not an ext2
filesystem
2008-08-12 15:55 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: if APPLE_DRIVER, set the default unit to the
boot unit
2008-08-12 15:54 Laurent Vivier <Laurent@lvivier.info>
* second/head.S: include ../first/macos.i, for APPLE_DRIVER, manage
32bitmode and boot unit
2008-08-12 15:51 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-mkisofs.c: add --config to provide a configuration
file
2008-08-12 15:45 Laurent Vivier <Laurent@lvivier.info>
* libstream/Makefile, libstream/libstream.h,
libstream/stream_open.c, libstream/stream_set_default.c: Allow to
define a default unit to use if none is provided
2008-08-12 13:44 Laurent Vivier <Laurent@lvivier.info>
* first/macos.i: Add NewPtrClear
2008-08-12 11:24 Laurent Vivier <Laurent@lvivier.info>
* Makefile, second/Makefile: Generate an EMILE Apple_Driver
2008-08-12 11:22 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-mkisofs.c: Add --emiledriver to boot second stage of
emile in an Apple_Driver partition
2008-08-12 11:15 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-map-set.c: map_read_sector() uses offset from the
beginning of the partition, not of the disk
2008-08-12 11:13 Laurent Vivier <Laurent@lvivier.info>
* libmap/libmap.h: Add APPLE_DRIVER_EMILE
2008-08-12 11:12 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_checksum.c: length is 16bit value
2008-08-07 21:32 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_second_get_configuration.c: return NULL if header
version is wrong
2008-07-30 00:35 Laurent Vivier <Laurent@lvivier.info>
* ChangeLog: update
2008-07-30 00:33 Laurent Vivier <Laurent@lvivier.info>
* libcontainer/container_init.c: define mount
2008-07-29 02:28 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_second_set_configuration.c: correct typo between
len and size
2008-07-29 02:03 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: Correctly set configuration path
2008-07-29 01:43 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: don't crash when configuration file is not found
2008-07-29 01:08 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: correct sprintf parameter signedness
2008-07-29 00:53 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: correct management of filesystem support
2008-07-29 00:51 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_utils.c: manage duplicate /
2008-07-28 11:59 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_second_set_configuration.c: clear unused part of
configuration buffer
2008-07-27 19:19 Laurent Vivier <Laurent@lvivier.info>
* config.mk: update VERSION to 0.12
2008-07-27 19:17 Laurent Vivier <Laurent@lvivier.info>
* debian/changelog: Add release 0.12
2008-07-27 19:12 Laurent Vivier <Laurent@lvivier.info>
* debian/emile-bootblocks.install: remove apple_driver
2008-07-27 19:11 Laurent Vivier <Laurent@lvivier.info>
* ChangeLog: update
2008-07-27 18:16 Laurent Vivier <Laurent@lvivier.info>
* docs/Makefile: Create directories man5 and man8
2008-07-27 18:10 Laurent Vivier <Laurent@lvivier.info>
* floppy.conf: change ramdisk_size for etch
2008-07-27 17:41 Laurent Vivier <Laurent@lvivier.info>
* floppy.conf: replace vmlinuz-2.6.18-4-mac by vmlinuz-2.6.17-2-mac
2008-07-27 17:13 Laurent Vivier <Laurent@lvivier.info>
* second/console.c: remove broken modification (last commit)
2008-07-27 17:10 Laurent Vivier <Laurent@lvivier.info>
* floppy.conf: commit use root property and boot from HD
2008-07-27 17:01 Laurent Vivier <Laurent@lvivier.info>
* libstream/libstream.h, libstream/stream_open.c: Allow to probe
the filesystem
2008-07-27 16:59 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-install.c: Allow to use "root" in configuration file
2008-07-27 16:59 Laurent Vivier <Laurent@lvivier.info>
* second/console.c: Wait the release of a key if needed
2008-07-24 03:44 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_open.c, libext2/ext2_utils.c: Manage one level
software link
2008-07-24 03:06 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: Correct ext2: decoding
2008-07-23 22:19 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_utils.c: correct big endian support
2008-07-23 20:44 Laurent Vivier <Laurent@lvivier.info>
* scripts/tools.sh: define rule for man section 5
2008-07-23 07:53 Laurent Vivier <Laurent@lvivier.info>
* Makefile, apple_driver/Makefile, apple_driver/console.c,
apple_driver/console.h, apple_driver/font_8x16.c,
apple_driver/head.S, apple_driver/ld.script, apple_driver/main.c,
apple_driver/misc.h, apple_driver/vga.c, apple_driver/vga.h:
remove apple_driver
2008-07-23 07:37 Laurent Vivier <Laurent@lvivier.info>
* Rules.mk, docs/Makefile, docs/emile.conf.sgml: add man emile.conf
2008-07-23 07:35 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_utils.c: behaves correctly when last character is
'/'
2008-07-22 01:00 Laurent Vivier <Laurent@lvivier.info>
* docs/emile-first-tune.sgml, docs/emile-install.sgml: update
2008-07-22 01:00 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-first-tune.c: update help
2008-07-22 00:56 Laurent Vivier <Laurent@lvivier.info>
* docs/emile-map-set.sgml: update
2008-07-22 00:46 Laurent Vivier <Laurent@lvivier.info>
* docs/emile.sgml: update
2008-07-22 00:44 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-set-output.c: help cosmetic change
2008-07-22 00:22 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-mkisofs.c, tools/emile-set-cmdline.c: help cosmetic
change
2008-07-22 00:16 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-map-set.c: help cosmetic change
2008-07-22 00:01 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-first-tune.c, tools/emile-install.c: help cosmetic
change
2008-07-21 23:54 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: help cosmetic change
2008-07-16 23:00 Laurent Vivier <Laurent@lvivier.info>
* ChangeLog: Update
2008-07-16 22:54 Laurent Vivier <Laurent@lvivier.info>
* Makefile: Correct the Changelog target: ChangeLog
2008-07-16 22:52 Laurent Vivier <Laurent@lvivier.info>
* libstream/gzio.c, libstream/stream_uncompress.c: correctly init
fs when stream_uncompress() is used (gzread() calls saved
fs.read()
2008-07-16 22:47 Laurent Vivier <Laurent@lvivier.info>
* second/load.c: correctly manage seek()/read() error cases, ignore
return of stream_close()
2008-07-16 20:04 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: EMILE pseudo-loader does not seem to
support static array initialization of kind "[x] = y,", replace
it by a switch()
2008-07-12 00:15 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_second_get_param.c,
libemile/emile_second_set_param.c: parameters is now args
2008-07-11 22:59 Laurent Vivier <Laurent@lvivier.info>
* Makefile: Correctly generate floppy_ramdisk.bin when GESTALTID is
used
2008-07-11 22:47 Laurent Vivier <Laurent@lvivier.info>
* Makefile, config.mk: Add GESTALTID in config.mk
2008-07-09 00:01 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: More ifdef
2008-07-08 23:59 Laurent Vivier <Laurent@lvivier.info>
* Makefile: Generate Changelog
2008-07-08 23:58 Laurent Vivier <Laurent@lvivier.info>
* tools/iso9660_cat.c: correct printf format for st_size
2008-07-08 23:58 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: correctly decode kernel path and center title
2008-07-04 20:46 Laurent Vivier <Laurent@lvivier.info>
* ChangeLog: Update
2008-04-21 21:50 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: add --no-fs, to restore management of container
(old behavior)
2008-04-21 21:49 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-install.c: add args property, make some cleanup
2008-04-20 18:35 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-mkisofs.c, tools/ext2_cat.c, tools/ext2_ls.c,
tools/iso9660_cat.c, tools/iso9660_ls.c: use stream_* structures
instead of specific ones
2008-04-20 18:33 Laurent Vivier <Laurent@lvivier.info>
* libmap/Makefile, libmap/libmap.h, libmap/map_close.c,
libmap/map_init.c: Add map_init.c, use stream_FILE with
device->close()
2008-04-20 18:29 Laurent Vivier <Laurent@lvivier.info>
* libiso9660/Makefile, libiso9660/iso9660.h,
libiso9660/iso9660_close.c, libiso9660/iso9660_closedir.c,
libiso9660/iso9660_fstat.c, libiso9660/iso9660_init.c,
libiso9660/iso9660_lseek.c, libiso9660/iso9660_mount.c,
libiso9660/iso9660_open.c, libiso9660/iso9660_opendir.c,
libiso9660/iso9660_read.c, libiso9660/iso9660_readdir.c,
libiso9660/libiso9660.h: move all specific structure to iso9660.h
and stream_* generic structures in interface
2008-04-20 18:25 Laurent Vivier <Laurent@lvivier.info>
* libext2/Makefile, libext2/ext2.h, libext2/ext2_close.c,
libext2/ext2_closedir.c, libext2/ext2_fstat.c,
libext2/ext2_init.c, libext2/ext2_lseek.c, libext2/ext2_mount.c,
libext2/ext2_open.c, libext2/ext2_opendir.c, libext2/ext2_read.c,
libext2/ext2_readdir.c, libext2/ext2_utils.h, libext2/libext2.h:
move all specific structure to ext2.h and stream_* generic
structures in interface
2008-04-20 18:20 Laurent Vivier <Laurent@lvivier.info>
* libcontainer/Makefile, libcontainer/container.h,
libcontainer/container_close.c, libcontainer/container_fstat.c,
libcontainer/container_init.c, libcontainer/container_lseek.c,
libcontainer/container_mount.c, libcontainer/container_open.c,
libcontainer/container_read.c, libcontainer/libcontainer.h: move
all specific structure to container.h and stream_* generic
structures in interface
2008-04-20 18:16 Laurent Vivier <Laurent@lvivier.info>
* libblock/Makefile, libblock/block.h, libblock/block_close.c,
libblock/block_fstat.c, libblock/block_init.c,
libblock/block_lseek.c, libblock/block_mount.c,
libblock/block_open.c, libblock/block_read.c,
libblock/libblock.h: move all specific structure to block.h and
stream_* generic structures in interface
2008-04-20 18:07 Laurent Vivier <Laurent@lvivier.info>
* libstream/gzio.c, libstream/libstream.h,
libstream/stream_close.c, libstream/stream_fstat.c,
libstream/stream_lseek.c, libstream/stream_open.c,
libstream/stream_read.c, libstream/stream_uncompress.c: move
volume and file to stream, add fs.mount, fs.open
2008-04-20 18:01 Laurent Vivier <Laurent@lvivier.info>
* docs/emile.conf: correct kernel path
2008-04-16 20:34 Laurent Vivier <Laurent@lvivier.info>
* docs/emile.conf: introduce root property
2008-04-16 20:32 Laurent Vivier <Laurent@lvivier.info>
* tools/Makefile, tools/emile-install.c, tools/emile.c,
tools/emile_config.c, tools/emile_config.h: use libconfig
2008-04-16 20:22 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: correct typo
2008-04-16 15:43 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: Add root property, rename parameters as args
2008-04-16 15:37 Laurent Vivier <Laurent@lvivier.info>
* floppy.conf: Add comments and ext2 entry
2008-04-16 15:36 Laurent Vivier <Laurent@lvivier.info>
* libconfig/config_get_next_property.c: Manage comments (#.*\n) in
configuration file
2008-04-14 00:24 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_mount.c, libext2/ext2_utils.c, libext2/ext2_utils.h:
Manage byte order (ext2 is little-endian, libext2 can run on
big-endian like m68k or powerpc)
2008-04-13 00:27 Laurent Vivier <Laurent@lvivier.info>
* libstream/Makefile, libstream/libstream.h,
libstream/stream_open.c, second/Makefile: Add ext2 in libstream
2008-04-13 00:16 Laurent Vivier <Laurent@lvivier.info>
* libext2/ext2_utils.c: Correctly manage / in pathname
2008-04-13 00:15 Laurent Vivier <Laurent@lvivier.info>
* tools/device.c: Avoid offset overflow on disk bigger than 2 GB
2008-04-12 23:19 Laurent Vivier <Laurent@lvivier.info>
* tools/Makefile, tools/ext2_cat.c, tools/ext2_ls.c: Add tools for
ext2
2008-04-12 23:17 Laurent Vivier <Laurent@lvivier.info>
* Makefile, libext2/ext2_close.c, libext2/ext2_closedir.c,
libext2/ext2_fstat.c, libext2/ext2_lseek.c, libext2/ext2_mount.c,
libext2/ext2_open.c, libext2/ext2_opendir.c, libext2/ext2_read.c,
libext2/ext2_readdir.c, libext2/ext2_utils.c,
libext2/ext2_utils.h, libext2/libext2.h, libext2/Makefile: Add
preliminary ext2 support
2008-03-18 00:25 Laurent Vivier <Laurent@lvivier.info>
* libblock/block_read.c: correct computing of size of buffer subset
2008-03-17 19:52 Laurent Vivier <Laurent@lvivier.info>
* second/keyboard.c: scancode_Stop is '.' and '>',
scancode_KeypadStop is '.'
2008-02-25 22:49 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: Correctly manage chainloader
2008-02-25 22:36 Laurent Vivier <Laurent@lvivier.info>
* tools/emile_config.c: manage correctly CONFIG_GESTALTID,
CONFIG_KERNEL_MAP, CONFIG_INITRD_MAP
2008-02-14 23:39 Laurent Vivier <Laurent@lvivier.info>
* tools/device.c, tools/device.h: replace int by long on void* cast
to be able to compile on 64bit architecture
2008-02-14 21:15 Laurent Vivier <Laurent@lvivier.info>
* libstream/Makefile: Allows SCSI second level to use block:
protocol
2008-02-14 21:05 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: Correct typo
2008-02-14 20:53 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: for chainloader, size of "block:" is in bytes
2008-02-14 20:46 Laurent Vivier <Laurent@lvivier.info>
* libblock/block_read.c, libblock/block_open.c,
libemile/emile_floppy_create_image.c: block: takes an offset in
blocks and not in bytes (to be able to manage SCSI disk)
2008-02-10 02:36 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: Better management of chainloader
2008-02-09 17:38 Laurent Vivier <Laurent@lvivier.info>
* tools/emile.c: correct typo about --restore
2007-11-05 22:21 Laurent Vivier <Laurent@lvivier.info>
* second/load.c: Check boot signature and flush caches
2007-11-03 22:04 Laurent Vivier <Laurent@lvivier.info>
* second/main.c: Call chainloader, for the moment EMILE is only
able to chaiload itself...
2007-11-03 21:40 Laurent Vivier <Laurent@lvivier.info>
* libmacos/macos/lowmem.h: Add LMSetBootDriver()
2007-11-03 21:37 Laurent Vivier <Laurent@lvivier.info>
* libmacos/macos/osutils.h: Add FlushInstructionCache(),
FlushDataCache(), DisableExtCache(), FlushExtCache() and
FlushCodeCacheRange()
2007-11-03 21:36 Laurent Vivier <Laurent@lvivier.info>
* libmacos/macos/traps.h: Add _HWPriv dispatcher
2007-11-02 23:11 Laurent Vivier <Laurent@lvivier.info>
* libstream/libstream.h, libstream/stream_fstat.c,
libstream/stream_open.c: Set more information in streamp_r,
allows to retrieve unit id with stream_fstat()
2007-11-02 10:40 Laurent Vivier <Laurent@lvivier.info>
* libmap/map_read.c: use sector number instead of computing it from
struct size and block size
2007-11-02 10:39 Laurent Vivier <Laurent@lvivier.info>
* second/load.c: Add error message
2007-11-01 23:52 Laurent Vivier <Laurent@lvivier.info>
* libmap/map_open.c: use directly block address instead of
computing it with blocksize, correct parameter of get_blocksize()
2007-11-01 23:43 Laurent Vivier <Laurent@lvivier.info>
* libblock/block_open.c, libblock/block_read.c: Correct parameters
of get_blocksize()
2007-11-01 23:12 Laurent Vivier <Laurent@lvivier.info>
* libmap/map_write.c: correct call of get_blocksize()
2007-11-01 23:07 Laurent Vivier <Laurent@lvivier.info>
* libmap/Makefile, libmap/map_get_blocksize.c, libmap/libmap.h: Add
map_get_blocksize()
2007-11-01 22:18 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: Add some messages, add
map_get_blocksize(), correct close()
2007-10-23 01:13 Laurent Vivier <Laurent@lvivier.info>
* libstream/stream_open.c: Cleanup partition map management
2007-10-23 00:06 Laurent Vivier <Laurent@lvivier.info>
* second/config.c: correct memory corruption by hazardous free(),
correct bad values (uninitalized) in error message
2007-10-21 03:48 Laurent Vivier <Laurent@lvivier.info>
* second/config.c, second/config.h, second/main.c: store
read_config() result in a structure
2007-10-21 03:26 Laurent Vivier <Laurent@lvivier.info>
* libemile/emile_second_get_configuration.c: correct uninitialized
value (offset)
2007-10-21 03:16 Laurent Vivier <Laurent@lvivier.info>
* tools/emile-install.c: Clear configuration memory
2007-10-21 03:01 Laurent Vivier <Laurent@lvivier.info>
* ChangeLog: Update
2007-10-10 23:17 Laurent Vivier <Laurent@lvivier.info>
* emile/second/Makefile, second/Makefile: Add libmap
2007-10-10 23:17 Laurent Vivier <Laurent@lvivier.info>
* Makefile, emile/Makefile: Add libmap-m68k dependencies
2007-10-10 23:13 Laurent Vivier <Laurent@lvivier.info>
* emile/libstream/Makefile, emile/libstream/stream_open.c,
libstream/Makefile, libstream/stream_open.c: use libmap
2007-10-10 23:07 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_bootblock_read.c,
emile/libmap/map_bootblock_write.c,
emile/libmap/map_read_sector.c, emile/libmap/map_write_sector.c,
libmap/map_bootblock_read.c, libmap/map_bootblock_write.c,
libmap/map_read_sector.c, libmap/map_write_sector.c,
emile/tools/emile-map-set.c, tools/emile-map-set.c: rename
map_partition_read and map_partition_write to map_read_sector and
map_write_sector
2007-10-10 22:58 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/Makefile, emile/libmap/libmap.h,
emile/libmap/map_partition_read.c,
emile/libmap/map_partition_write.c,
emile/libmap/map_read_sector.c, emile/libmap/map_write_sector.c,
libmap/Makefile, libmap/libmap.h, libmap/map_partition_read.c,
libmap/map_partition_write.c, libmap/map_read_sector.c,
libmap/map_write_sector.c: rename map_partition_read and
map_partition_write to map_read_sector and map_write_sector
2007-10-10 22:49 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_close.c, libmap/map_close.c,
emile/libmap/map_open.c, libmap/map_open.c: Duplicate device on
open and free on close, close device on map close
2007-10-10 19:16 Laurent Vivier <Laurent@lvivier.info>
* emile/second/config.c, emile/second/config.h, second/config.c,
second/config.h: Add chainloader parameter
2007-10-10 19:14 Laurent Vivier <Laurent@lvivier.info>
* emile/second/load.c, emile/second/load.h, second/load.c,
second/load.h: Add load_chainloader()
2007-10-10 18:47 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/device.h, emile/tools/emile-map-set.c,
emile/tools/emile-mkisofs.c, emile/tools/emile.c,
emile/tools/emile_scanbus.c, emile/tools/iso9660_cat.c,
emile/tools/iso9660_ls.c, tools/device.h, tools/emile-map-set.c,
tools/emile-mkisofs.c, tools/emile.c, tools/emile_scanbus.c,
tools/iso9660_cat.c, tools/iso9660_ls.c: Add
device_get_blocksize()
2007-10-10 18:46 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/device.c, tools/device.c: Add device_get_blocksize(),
and adjust offset using blocksize instead of << 11
2007-10-10 18:41 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_block0_write.c, emile/libmap/map_open.c,
emile/libmap/map_partition_read.c,
emile/libmap/map_partition_write.c, emile/libmap/map_read.c,
emile/libmap/map_write.c, libmap/map_block0_write.c,
libmap/map_open.c, libmap/map_partition_read.c,
libmap/map_partition_write.c, libmap/map_read.c,
libmap/map_write.c: data is map->device->data and not
map->device, read_sector() and write_sector() need an offset in
block and not in bytes whereas size is in bytes
2007-10-09 22:48 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/emile-map-set.c, tools/emile-map-set.c: correct
signedness of 4th arguments of map_partition_{read|write}
2007-10-09 22:43 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/emile-map-set.c, tools/emile-map-set.c: use
map_partition_read() and map_partition_write()
2007-10-09 22:40 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_bootblock_read.c,
emile/libmap/map_bootblock_write.c,
emile/libmap/map_partition_read.c,
emile/libmap/map_partition_write.c, libmap/map_bootblock_read.c,
libmap/map_bootblock_write.c, libmap/map_partition_read.c,
libmap/map_partition_write.c: use bytes instead of block
2007-10-09 22:16 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/Makefile, libmap/Makefile: Add map_partition_read.c
and map_partition_write.c
2007-10-09 22:15 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_bootblock_read.c, libmap/map_bootblock_read.c:
call map_partition_read()
2007-10-09 22:15 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_bootblock_write.c, libmap/map_bootblock_write.c:
call map_partition_write()
2007-10-09 22:14 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_partition_read.c, libmap/map_partition_read.c:
correct name
2007-10-09 22:13 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_partition_write.c, libmap/map_partition_write.c:
correct names
2007-10-09 22:06 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/libmap.h, libmap/libmap.h: corret typo
2007-10-09 22:04 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/map_partition_read.c,
emile/libmap/map_partition_write.c, libmap/map_partition_read.c,
libmap/map_partition_write.c: Add map_partition_read() and
map_partition_write()
2007-10-09 22:00 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/libmap.h, libmap/libmap.h: Add map_partition_read()
and map_partition_write()
2007-10-09 21:35 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/emile_scanbus.c, tools/emile_scanbus.c: use
device_io_t
2007-10-09 21:29 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/emile-mkisofs.c, tools/emile-mkisofs.c,
emile/tools/emile.c, tools/emile.c: use device_io_t
2007-10-09 21:23 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/Makefile, tools/Makefile: Add device.c to link emile
and emile-map-set
2007-10-09 21:21 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/iso9660_cat.c, emile/tools/iso9660_ls.c,
tools/iso9660_cat.c, tools/iso9660_ls.c: use device_sector_size
to set sector size to 2048
2007-10-09 21:16 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/device.c, emile/tools/device.h, tools/device.c,
tools/device.h: Add device_write_sector() and device_sector_size,
use int fd instead FILE*
2007-10-09 21:10 Laurent Vivier <Laurent@lvivier.info>
* emile/libemile/Makefile, libemile/Makefile: add -I.
2007-10-09 21:10 Laurent Vivier <Laurent@lvivier.info>
* emile/libemile/libemile.h, libemile/libemile.h: Restore
emile_scsi_get_dev(), emile_get_dev_name() and
emile_scsi_get_rdev()
2007-10-09 21:02 Laurent Vivier <Laurent@lvivier.info>
* emile/libmap/Makefile, libmap/Makefile, emile/libmap/libmap.h,
emile/libmap/map_block0_write.c,
emile/libmap/map_bootblock_read.c,
emile/libmap/map_bootblock_write.c, emile/libmap/map_close.c,
emile/libmap/map_dev.c, emile/libmap/map_open.c,
emile/libmap/map_read.c, libmap/libmap.h,
libmap/map_block0_write.c, libmap/map_bootblock_read.c,
libmap/map_bootblock_write.c, libmap/map_close.c,
libmap/map_dev.c, libmap/map_open.c, libmap/map_read.c,
emile/libmap/map_set_startup.c, emile/libmap/map_write.c,
libmap/map_set_startup.c, libmap/map_write.c: move from stdio to
device_io_t
2007-10-08 22:56 Laurent Vivier <Laurent@lvivier.info>
* emile/libstream/libstream.h, libstream/libstream.h: Add
definition of stream_write_sector_t
2007-10-08 15:32 Laurent Vivier <Laurent@lvivier.info>
* emile/second/driver.c, second/driver.c: define driver_ptr() which
computes driver pointer according handle and dCtlFlags
2007-10-08 15:20 Laurent Vivier <Laurent@lvivier.info>
* emile/second/driver.c, emile/second/driver.h, second/driver.c,
second/driver.h: add drive_to_refnum() and refnum_to_drive()
2007-10-08 14:38 Laurent Vivier <Laurent@lvivier.info>
* emile/second/driver.h, second/driver.h: Find scsi id accorind
refnum and vice-versa
2007-10-08 14:05 Laurent Vivier <Laurent@lvivier.info>
* emile/tools/emile-install.c, emile/tools/emile.c,
emile/tools/emile_config.c, emile/tools/emile_config.h,
tools/emile-install.c, tools/emile.c, tools/emile_config.c,
tools/emile_config.h: Manage chainloader attribute in
configuration files
2007-10-04 23:01 Laurent Vivier <Laurent@lvivier.info>
* Makefile, emile/Makefile: Add libmap in dist
2007-10-04 23:00 Laurent Vivier <Laurent@lvivier.info>
* emile/libemile/Makefile, libemile/Makefile: remove partition.h
2007-10-04 22:55 Laurent Vivier <Laurent@lvivier.info>