-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathChangeLog
2884 lines (1707 loc) · 78.1 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
2012-02-22 Ilija Kocho <[email protected]>
* ecos.db: Add TWR-K70F120M bsp and target.
2012-05-04 Ilija Stanislevik <[email protected]>
* ecos.db: Add Microchip ENC424J600 / ENC624J600 ethernet controller
driver package.
2012-03-30 Jonathan Larmour <[email protected]>
* NEWS, ecos.db: Add STM3220G-eval and STM3240G-eval board port and
targets. Contributed by eCosCentric Limited.
2012-03-30 John Dallaway <[email protected]>
* NEWS, ecos.db: Add Freescale KwikStik HAL package and target.
Patch from Tomas Frydrych.
2012-03-12 Christophe Coutand <[email protected]>
* ecos.db: Add Actel SmartFusion A2Fvvv variant HAL, board support
package for Actel A2F200 inluding Actel serial, ethernet, spi and
i2c drivers as well as spi flash driver.
2012-02-22 Ilija Kocho <[email protected]>
* ecos.db: Add TWR-K60N512-FXM, Freescale DSPI driver,
Freescale EDMA library, Micron CellularRAM support.
2011-10-30 Ilija Kocho <[email protected]>
* NEWS, ecos.db: Add Freescale Kinetis variant HAL, board support
packages for TWR-K60N512 and TWR-K40X256 including Freescale serial
and ethernet drivers.
2011-05-25 Christophe Coutand <[email protected]>
* NEWS, ecos.db: Add SPI flash driver for SST25xx devices.
2011-05-25 Christophe Coutand <[email protected]>
* NEWS, ecos.db: Add SPI flash driver for Atmel AT25DFxxx.
2011-03-13 Ilija Kocho <[email protected]>
* NEWS, ecos.db: Add LPC17XX variant HAL, support for
NXP Cortex M3 LPC17XX CPUs. BSP for Olimex LPC-1766-STK
board including ethernet, serial and wallclock drivers.
2011-03-13 Ilija Kocho <[email protected]>
* ecos.db: Ethernet, serial, and wallclock drivers for LPC17XX.
(CYGPKG_DEVICES_WALLCLOCK_ARM_LPC2XXX): Fixed alias/description;
(CYGPKG_DEVS_ETH_ARM_LPC2XXX): Ditto.
(CYGPKG_IO_SERIAL_ARM_LPC24XX): Ditto.
2011-02-22 John Dallaway <[email protected]>
* ecos.db: Add hardware package CYGPKG_DEVS_ADC_ARM_AT91 to
applicable target records: at91sam7sek, at91sam7xek, sam7ex256,
eb55, phycore
2011-02-18 John Dallaway <[email protected]>
* ecos.db: Remove non-hardware package CYGPKG_IO_ADC from the
ek-lm3s811 target definition and eliminate leading space in alias
string for correct sorting of targets by name.
2011-02-09 Christophe Coutand <[email protected]>
* NEWS, ecos.db: Add Stellaris Cortex M3 variant HAL, support for
Stellaris Cortex M3 800 series CPUs. BSP for Stellaris EK-LM3S811
board including ADC and I2C drivers.
2010-11-12 John Dallaway <[email protected]>
* ecos.db: Add USB mass storage function driver package.
2010-10-27 John Dallaway <[email protected]>
* ecos.db: Add STM32 USB slave driver package.
2010-05-30 Christophe Coutand <[email protected]>
* ecos.db: Add AT91 ADC driver.
2009-11-13 John Dallaway <[email protected]>
* ecosadmin.tcl: Keep target records containing removed packages
by default. Add "--remove_targets" switch to force removal.
2009-08-20 John Dallaway <[email protected]>
* ecos.db: Add uSTL package.
2009-07-14 John Dallaway <[email protected]>
* ecos.db: Add CYGPKG_IO_USB and CYGPKG_IO_USB_SLAVE hardware packages
to targets at91sam7sek, at91sam7xek and sam7ex256.
2009-03-19 Ilija Kocho <[email protected]>
* ecos.db: target mac7100evb added word "Freescale" to the description.
2009-03-04 Nick Garnett <[email protected]>
* ecos.db: Add ADC synthetic driver. Add STM32 ADC driver.
2009-02-12 John Dallaway <[email protected]>
* ecos.db: Make CYGPKG_DEVS_FLASH_SPI_M25PXX a hardware package.
2009-02-06 John Dallaway <[email protected]>
* ecos.db: Eliminate superfluous target aliases which duplicate target
name.
2009-02-05 Chris Holgate <[email protected]>
* ecos.db: Added M25Pxx SPI flash driver. Included M25pxx driver in
STM3210E eval board template.
2009-02-05 John Dallaway <[email protected]>
* ecos.db: Remove package and target records for the deprecated
ColdFire port to avoid confusion. Add the CYGPKG_IO_SPI hardware
package to all relevant target records.
* pkgconf/stylesheet.dsl, pkgconf/ssa4.dsl, pkgconf/ssletter.dsl:
Match up "--" string delimiters in the copyright banners.
2009-02-04 Nick Garnett <[email protected]>
* ecos.db: Add STM32 SPI driver.
2009-01-08 John Dallaway <[email protected]>
* ecosadmin.tcl, pkgconf/fixhtml.tcl: Specify script interpreter via
/usr/bin/env.
2008-12-02 Sergei Gavrikov <[email protected]>
* ecos.db: Use the flash V2 driver for the LPC-H2294, LPC-E2294, &
LPC-L2294-1MB targets.
2008-11-23 Sergei Gavrikov <[email protected]>
* NEWS:
* ecos.db: Ports to LPC-H2294, LPC-E2294, & LPC-L2294-1MB
including flash drivers and ethernet drivers where appropriate.
2008-11-20 Bart Veer <[email protected]>
* ecos.db: update M68K HAL packages and add m68k/mcfxxxx serial
and ethernet device drivers.
2008-11-18 Jonathan Larmour <[email protected]>
* ecos.db: Add Atmel dataflash package record, accidentally
omitted from 2008-11-16 changes.
Switch synthetic target to use v2 synth flash driver.
2008-11-16 Jonathan Larmour <[email protected]>
* ecos.db: Use v2 drivers for adder/adderII and IXDP425.
2008-11-16 Jonathan Larmour <[email protected]>
* ecos.db: Merge flash_v2 branch to trunk including these changes:
2004-11-20 Bart Veer <[email protected]>
* ecos.db: Add new AM29xxxxxx driver which supports the V2 API
2004-08-06 Andrew Lunn <[email protected]>
* ecos.db: Added the new strata driver which uses the V2 API.
2004-08-05 Andrew Lunn <[email protected]>
* ecos.db: Added the new synthetic target flash device which uses
the new API and has some extra goodies like boot blocks.
2008-11-11 Nick Garnett <[email protected]>
* ecos.db: Add STM32 wallclock driver.
2008-11-11 John Dallaway <[email protected]>
* ecos.db: Remove package records for absent packages and remove
non-hardware packages from target records. Fix duplicate aliases.
2008-09-11 Uwe Kindler <[email protected]>
* NEWS:
* ecos.db: Add ADC device driver for EA2468 OEM board
which uses a new generic LPC24xx ADC driver.
2008-10-31 Nick Garnett <[email protected]>
* NEWS, ecos.db: Add Cortex-M HAL and drivers.
2008-10-07 Bart Veer <[email protected]>
* NEWS, ecos.db: add generic framebuffer support and a synthetic
target device driver.
2008-09-15 Steven Clugston <[email protected]>
* NEWS:
* ecos.db: Port to PATI PC/104+ board from MPL elektronik.
2008-09-11 Uwe Kindler <[email protected]>
* NEWS:
* ecos.db: Add ethernet device driver for LPC2xxx cores and
instantiate it on LPC2460 OEM board.
2008-08-08 Nick Garnett <[email protected]>
* NEWS:
* ecos.db: Add generic ADC package.
2008-07-12 Hans Rosenfeld <[email protected]>
* NEWS:
* ecos.db: added drivers for LPC2xxx on-chip flash, RTC, I2C and
SPI units
2008-07-08 Uwe Kindler <[email protected]>
* NEWS:
* ecos.db: Add EA LPC2468 OEM board, target, flash driver,
LPC24XXX variant + serial driver
2008-06-07 Frank Pagliughi <[email protected]>
* NEWS:
* ecos.db: Add USB serial class driver.
2008-01-06 Lars Poeschel <[email protected]>
* NEWS
* ecos.db: Add FR30, skmb91302 board from Fujitsu
2008-01-04 Uwe Kindler <[email protected]>
* NEWS:
* ecos.db: Add phyCORE229x platform, target, ethernet driver and
flash driver
2007-07-02 uwe.kindler <[email protected]>
* ecos.db CAN driver for LPC2xxx. Updated entry for loop
CAN device driver.
2007-04-08 uwe.kindler <[email protected]>
* ecos.db Ethernet driver for Olimex SAM7-EX256
2007-03-26 uwe.kindler <[email protected]>
* ecos.db CAN driver for AT91.
2007-02-13 John Eigelaar <[email protected]>
Andrew Lunn <[email protected]>
* ecos.db: Ethernet device driver for AT91 EMAC.
2007-01-10 Ilija Koco <[email protected]>
* ecos.db: Splitted esci directory in esci/drv and esci/hdr
2007-01-02 Uwe Kindler <[email protected]>
* ecos.db Add Olimex SAM7-EX256 platform and target
2006-11-21 Alexander Neundorf <[email protected]>
* ecos.db: add generic interrupt driven serial IO driver
for PXA 2X0 platforms
2006-10-16 Jonathan Larmour <[email protected]>
* ecos.db: Comment out CYGPKG_DEVS_ETH_ARM_AT91 for now - it's still
work in progress apparently.
2006-09-21 Jonathan Larmour <[email protected]>
* ecos.db: add MMC/SPI device driver.
2006-08-06 Bart Veer <[email protected]>
* ecos.db: add M68K/MCF52xx ColdFire I2C driver
2006-07-18 Jonathan Larmour <[email protected]>
* ecos.db: Add AT-HTTPD package from Anthony Tonizzo.
2006-06-19 Andrew Lunn <[email protected]>
* ecos.db: Remove entries for none existing packages.
2006-06-08 Ilija Koco <[email protected]>
* ecos.db: Add Freescale MAC7100EVB platform and target
2006-06-09 Frank Pagliughi <[email protected]>
* ecos.db: Add Philips D12 USB device driver and hardware specific
package for i386.
2006-06-06 Andrew Lunn <[email protected]>
* ecos.db: Remove the hardware property from the USB and USB slave
package. They themselves are not hardware dependent.
2006-06-02 Andrew Lunn <[email protected]>
* ecos.db: Add AT91SAM7SEK and AT91SAM7XEK packages and targets
2006-05-24 Ilija Koco <[email protected]>
* ecos.db: Add Freescale MAC7100 variant, SIvA MACE1 platform
and Freescale ESCI serial driver
2006-05-09 Andrew Lunn <[email protected]>
* ecos.db: Add the Coldfire architecture HAL, the mcf5272 varient
HAL and the m5272c3 platform HAL.
2006-05-07 Andrew Lunn <[email protected]>
* ecos.db: Add AT91 USB device driver.
2006-02-22 Mark Salter <[email protected]>
* ecos.db: Added net autotest.
2006-01-01 Andrew Lunn <[email protected]>
Oliver Munz <[email protected]>
* ecos.db: Added support for the AT91SAM7S. This includes a new
flash driver, watchdog driver, minor changes to the AT91 USART
driver, and extensions to the AT91 variant HAL in addition to the
AT91SAM7S HAL.
2005-08-17 John Dallaway <[email protected]>
* ecosadmin.tcl: Add new packages to an existing target
record where necessary when installing an eCos package
distribution file (.epk).
2005-07-18 John Dallaway <[email protected]>
* ecosadmin.tcl: Update hardware package lists within
target records when a package is missing.
2005-07-12 John Dallaway <[email protected]>
* ecosadmin.tcl: Optionally update hardware package lists
within target records when removing packages.
2005-06-28 Nick Garnett <[email protected]>
* ecos.db: Added Object Loader package.
2005-06-12 Brandl Harald <[email protected]>
* ecos.db: Added a ethernet device driver for the NETARM.
2005-06-10 John Dallaway <[email protected]>
* ecosadmin.tcl(ecosadmin::locate_subdirs): Accommodate
the behaviour of recent versions of Cygwin.
2005-04-17 Andrew Lunn <[email protected]>
* ecos.db: Added support for the AT91 based PhyCore
2005-03-03 Jay Foster <[email protected]>
* pkgconf/rules.mak: Added removal of -Wstrict-prototypes compiler
option from the C++ flags (ACTUAL_CXXFLAGS). This silences a
warning from GCC 3.4.3.
2005-02-23 Kurt Stremerch <[email protected]>
* ecos.db: Added support for Exys XSEngine (PXA255) based system.
2005-01-31 Aaron Voisine <[email protected]>
* Port of exXML to eCos. Based on ezXML 0.8.1.
Ported by Matt Jerdonek <[email protected]>
2004-11-25 Andrew Lunn <[email protected]>
* pkgconf/rules.doc: If we cannot find the catalog do not pass it
as an option and hope jade knowns where it is.
2004-11-19 Jani Monoses <[email protected]>
* ecos.db: New lpc2xxx platform, Olimex LPC-MT.
2004-11-16 John Dallaway <[email protected]>
* ecosadmin.tcl: Add "clean" and "check" commands.
2004-11-14 Jani Monoses <[email protected]>
* ecos.db: New packages which include a hal variant port for the
lpc2xxx, generic serial and watchdog drivers for the lpc2xxx and
ports for the Keil MCB2100 and Olimex P2106.
2004-10-17 Iztok Zupet <[email protected]>
* ecos.db: Added generic IDE disk driver.
2004-10-5 Andrea Michelotti <[email protected]>
* ecos.db: Added atmel jtst watchdog support
2004-10-05 Savin Zlobec <[email protected]>
* ecos.db: Added Atmel AT91 SPI bus driver and AT91EB55 devices.
2004-09-16 Andrea Michelotti <[email protected]>
* ecos.db: Added atmel jtst board support, based on atmel Diopsis
chip which is an at91 plus a dsp.
2004-09-09 John Dallaway <[email protected]>
* ecos.db: Remove CYGPKG_IO_SERIAL_ARM_AIM711_S3C4510 and
CYGPKG_IO_SERIAL_ARM_AIM711_16X5X which are now CDL components.
[ patch from Roland Cassebohm ]
2004-09-05 Mark Salter <[email protected]>
* ecos.db: Add new frv packages.
2004-08-24 Bart Veer <[email protected]>
* ecos.db: add SPI package
2004-08-06 Jani Monoses <[email protected]>
* ecos.db: Remove two obsolete flash drivers: INTEL_BOOTBLOCK
and AT91.They have better replacements and are not used anyway.
2004-05-15 Roland Ca?ebohm <[email protected]>
* ecos.db: Added aim711 support
2004-05-14 John Dallaway <[email protected]>
* ecos.db: Rationalise the i386 PC target naming scheme.
2004-05-04 Jani Monoses <[email protected]>
* ecos.db: Added lwip package.
2004-04-21 Yoshinori Sato <[email protected]>
* ecos.db: New Packages:
CYGPKG_DEVS_ETH_DREAMCAST_RLTK8139 - SEGA Dreamcast Broadband Adapter support
2004-04-14 Nick Garnett <[email protected]>
* ecos.db: Added PPP package.
2004-03-12 Jonathan Larmour <[email protected]>
* pkgconf/rules.mak: When linking, $LDFLAGS must be after target.ld
so that -nostdlib works in all cases, so place it at the end.
Add -finline-limit hack to preserve behaviour with newer GCC.
Treat -frtti like -fno-rtti.
2004-02-27 Iztok Zupet <[email protected]>
* ecos.db: Added the LANCEPCI packages and support for the vmWare
target
2004-02-25 Gary Thomas <[email protected]>
* devs/flash/powerpc/moab/current/src/moab_nand_flash.c:
New board revision has larger FLASH (TC58DVG02 == 128MB)
2004-02-20 Jonathan Larmour <[email protected]>
* ecos.db: Include CYGPKG_DEVS_ETH_ARM_KS32C5000 in snds100 and
e7t targets.
2004-01-30 John Dallaway <[email protected]>
* ecos.db: Add 'hardware' attribute to CYGPKG_DEVS_ETH_ARM_KS32C5000.
* ecosadmin.tcl: Delete empty directories in the repository following
eCos package removal. Read the hardware attribute from package records
in ecos.db.
2004-01-19 Nick Garnett <[email protected]>
* ecos.db: Added FAT12/16 filesystem packages.
* NEWS: Added line about FAT filesystem support.
2003-11-22 Andrew Lunn <[email protected]>
* ecos.db: Added libipsec package.
2003-11-09 Gary Thomas <[email protected]>
* ecos.db: Add serial I/O package for Motorola MPC8xxx (QUICC-II)
2003-11-05 Bob Koninckx <[email protected]>
* ecos.db: New packages - ethernet and watchdog for EC555
2003-11-04 Andrew Lunn <[email protected]>
* ecos.db: Modified the e7t to use the new 39VFXXX flash driver
2003-11-04 Andrew Lunn <[email protected]>
* ecos.db: Replaced the 39VF4XX flash driver with a 39VFXXX driver.
2003-10-24 Jonathan Larmour <[email protected]>
* pkgconf/rules.mak: Remove -finit-priority and -fvtable-gc
from all flags.
2003-10-15 Gary Thomas <[email protected]>
2003-09-23 Andrew Lunn <[email protected]>
* pkgconf/rules.mak Only pass C flags to the C compiler.
Workaround for BUG #1000035.
2003-10-04 Savin Zlobec <[email protected]>
* ecos.db: New package - Synth wall clock device
2003-09-30 Gary Thomas <[email protected]>
* ecos.db: New package - National Semiconductor DP83816 PCI ethernet
2003-09-21 Jonathan Larmour <[email protected]>
* ecos.db: Add sh4_202_md serial driver package
(CYGPKG_IO_SERIAL_SH_SH4_202_MD)
2003-09-19 Gary Thomas <[email protected]>
* ecos.db:
New platform - TAMS MOAB (PowerPC 405GPr)
New NAND FLASH drivers - Toshiba 58CXXX
New RTC driver - Dallas DS1307
2003-09-05 Nick Garnett <[email protected]>
* ecos.db: Added Packages and target for SuperH SH4-202 part and
MicroDev CPU board.
2003-08-22 Chris Garry <[email protected]>
* ecos.db: Add new VNC server package.
2003-08-22 Gary Thomas <[email protected]>
* ecos.db: Add support for picasso - another NMI uEngine (PXA255)
based system.
2003-08-19 Gary Thomas <[email protected]>
* ecos.db: New packages:
CYGPKG_DEVS_ETH_PHY - generic API for handling ethernet PHY devices
CYGPKG_DEVS_ETH_POWERPC_FCC - fast ethernet controller on MPC8xxx
CYGPKG_HAL_POWERPC_MPC8XXX - improved variant support for Motorola 8xxx
CYGPKG_HAL_POWERPC_RATTLER - Analogue & Micro Rattler (Motorola 8250)
2003-08-13 Thomas Koeller <[email protected]>
* ecos.db: Changed alias names for AT91 flash driver to avoid
collision with new EB40 flash driver.
2003-08-06 Michael Anburaj <[email protected]>
* ecos.db: Added support for the Samsung ARM9/SMDK2410 development
board.
2003-08-05 Thomas Koeller <[email protected]>
* ecos.db: Added new package CYGPKG_DEVS_FLASH_EB40 and updated the
eb40 target to use it instead of the old CYGPKG_DEVS_FLASH_AT91.
2003-07-23 Chris Garry <[email protected]>
* ecos.db: Added new packages CYGPKG_DEVS_FLASH_SST_39VF400 and
CYGPKG_DEVS_FLASH_ARM_E7T. Updated e7t target to include FLASH
drivers.
2003-07-09 Eric Doenges <[email protected]>
* ecos.db: Add Realtek 8139 (PCI) ethernet driver.
2003-06-12 John Dallaway <[email protected]>
* ecosadmin.tcl: Add repository merge capability (undocumented and
unsupported at present).
2003-05-21 Jonathan Larmour <[email protected]>
* pkgconf/stylesheet.dsl: No callout graphics.
2003-05-14 Thomas Koeller <[email protected]>
* ecos.db: Changed human-readable name and description of
CYGPKG_IO_SERIAL_ARM_AT91 to something sensible.
2003-05-12 Nick Garnett <[email protected]>
* ecos.db: Added packages and targets for Atmel AT91 boards: EB40,
EB40A, EB42 and EB55.
2003-05-05 John Dallaway <[email protected]>
* pkgconf/rules.doc: Build PNG images (not GIFs) for HTML docs.
2003-03-23 Iztok Zupet <[email protected]>
* pkgconf/rules.doc: Use three stylesheets instead of one.
One for HTML the other for PDF-letter and the third one for PDF-A4
format. (Stylesheets do not support two printable targets in
same stylesheet). Added copyfiles to PDF targets.
* pkgconf/ssletter.dsl: New file.
* pkgconf/ssa4.dsl: New file.
* pkgconf/stylesheet.dsl: remove print stylesheet.
2003-04-24 Jonathan Larmour <[email protected]>
* ecos.db: Shorten some long target names to stop them overrunning
GUI boundaries.
2003-03-24 Gary Thomas <[email protected]>
* ecos.db: New platform - Analogue & Micro AdderII (PPC852T)
2003-03-18 Mark Salter <[email protected]>
* ecos.db: Add support for XScale IXP425, IXDP425, GRG.
2003-03-09 Yoshinori Sato <[email protected]>
* ecos.db: New variant H8S (H8/300 architecture)
New platform H8MAX (H8/300H)
New platform EDOSK-2674 (H8S)
2003-03-05 John Dallaway <[email protected]>
* ecosadmin.tcl: Prevent calls to 'cygpath' with an empty
path argument.
2003-02-25 Andrew Lunn <[email protected]>
* ecos.db: Added the Simple Network Time Protocol (SNTP) client.
2003-02-24 Jonathan Larmour <[email protected]>
* pkgconf/rules.doc: Allow support for copying files directly from
source doc dir to build dir. Primarily intended for copying over
pre-built GIFs for the moment.
2003-02-20 Gary Thomas <[email protected]>
* ecos.db: New platform - NMI uE250 (ARM Xscale PXA250)
2003-02-14 Tim Michals <[email protected]>
2003-02-14 Jonathan Larmour <[email protected]>
* ecos.db: Add IDT MIPS IDT79RC32334 reference platform port,
including Flash, ethernet, and serial drivers.
2003-02-12 Patrick Doyle <[email protected]>
* ecos.db: Added ethernet packages to OMAP Innovator port.
2003-02-05 Patrick Doyle <[email protected]>
* ecos.db: Add Texas Instruments ARM9 OMAP Innovator port. Redboot
only for now.
2003-01-29 John Dallaway <[email protected]>
* ecosadmin.tcl: Accommodate UNIX-style paths under Cygwin when
adding packages.
* pkgconf/fixhtml.tcl: Accommodate latest Cygwin Tcl shell
(tclsh83.exe)
2003-01-24 Knud Woehler <[email protected]>
2003-01-24 Mark Salter <[email protected]>
* ecos.db: Add packages for XScale PXA2x0/MPC50.
2003-01-24 John Dallaway <[email protected]>
* ecosadmin.tcl: Accommodate latest Cygwin Tcl shell (tclsh83.exe)
2003-01-22 Jonathan Larmour <[email protected]>
* ecos.db: Add CYGPKG_LINUX_COMPAT. Not a compatibility layer
for Linux applications, but Linux drivers and filesystems.
Intended for an updated JFFS2.
2002-12-24 Gary Thomas <[email protected]>
* ecos.db: Add port to Cogent CSB281 (PowerPC 8245)
2002-12-22 Nick Garnett <[email protected]>
* ecos.db: Add HTTPD package.
2002-12-12 Gary Thomas <[email protected]>
2002-12-12 Patrick Doyle <[email protected]>
* ecos.db: Add packages for MPC8260 based systems - VADS
and TS6 (Delphi Communications).
2002-12-10 Gary Thomas <[email protected]>
* ecos.db: Enable serial devices for A&M 'adder' platform.
2002-11-25 Gary Thomas <[email protected]>
* ecos.db: Add support for A&M "Adder" (PowerPC 850)
Split PowerPC QUICC ethernet driver into generic+platform.
2002-11-14 Gary Thomas <[email protected]>
* ecos.db: Add application profiling package.
2002-11-14 Mark Salter <[email protected]>
* ecos.db: Add flash package for AM33 ASB2303.
2002-11-12 Gary Thomas <[email protected]>
* ecos.db: Add NPWR (Xscale from Team ASA). Reorganize Xscale
IOP310 based platforms (IQ80310).
2002-10-24 Jonathan Larmour <[email protected]>
* ecosadmin.tcl (ecosadmin::process_add_package): Use gzip -d, not
gunzip, as the latter fails with TCL on cygwin.
2002-10-18 Gary Thomas <[email protected]>
* ecos.db: Change package name for TS1000 flash part (consistency).
* NEWS: Add note about Allied Telesyn TS1000 port.
2002-10-15 Iztok Zupet <[email protected]>
* pkgconf/rules.doc: modified for pdf target
2002-09-23 Mark Salter <[email protected]>
* ecos.db: Change XScale core dirname to "cores".
2002-09-19 Mark Salter <[email protected]>
* ecos.db: Add XScale core package.
2002-09-03 Gary Thomas <[email protected]>
* ecos.db: Adding generic FEC driver support package (Viper).
Add Allied Telesyn TS1000 platform.
2002-08-27 Bart Veer <[email protected]>
* ecos.db: remove packages SDL and SMPEG that were never released.
2002-08-15 Andrew Lunn <[email protected]>
* ecos.db: Added the CPU load measurement package.
2002-08-14 Yoshinori Sato <[email protected]>
* ecos.db: Add H8/300H watchdog driver package.
2002-08-07 Andrew Lunn <[email protected]>
* ecos.db: Added CRC package.
2002-08-07 Gary Thomas <[email protected]>
* pkgconf/rules.doc: The location of the various stylesheets, etc,
is quite varied. Made some changes to let it work on a Debian system,
but this should definitely be revisited.
2002-08-06 Jonathan Larmour <[email protected]>
* ecos.db: Include AT91 watchdog driver in at91 target.
2002-08-06 Thomas Koeller <[email protected]>
* ecos.db: Add AT91 watchdog driver.
2002-06-20 Gary Thomas <[email protected]>
* ecos.db: A&M Viper now uses generic AMD FLASH drivers.
2002-05-08 Jesper Skov <[email protected]>
* ecos.db: Removed special SH2 SCIF driver. The changes have been
merged into the SH3 (now generic SH) driver.
2002-04-24 Yoshinori Sato <[email protected]>
* ecos.db: Add H8/300 serial driver.
2002-04-25 Bob Koninckx <[email protected]>
* ecos.db: Add ports to Wuerz Elektronik and Axiom Manufacturing
MPC555 based eval boards.
2002-04-24 Yoshinori Sato <[email protected]>
* ecos.db: Add H8/300 port.
2002-04-15 Nick Garnett <[email protected]>
* ecos.db: Changed integrator target to integrator_arm7. Tidied up
descriptions a little too.
2002-04-09 Jesper Skov <[email protected]>
* pkgconf/rules.mak: Allow building of .cpp files. Not supported
by makefile generator yet, though.
* ecos.db: Added SDL and SMPEG packages.
2002-03-26 Jesper Skov <[email protected]>
* ecos.db: Added microwindows package.
2002-03-18 Hugo Tyson <[email protected]>
* ecos.db: Add CYGPKG_HAL_SPARC_ERC32 and target sparc_erc32 -
also contributed by Jiri Gaisler <[email protected]>.
2002-03-15 Hugo Tyson <[email protected]>
* ecos.db: Add CYGPKG_HAL_SPARC, CYGPKG_HAL_SPARC_LEON, target
sparc_leon contributed by Jiri Gaisler <[email protected]>. See
<http://www.gaisler.com> for information about the TSIM simulator
and Leon project per se.
2002-03-10 Gary Thomas <[email protected]>
* ecos.db: Add keyboard driver.
2002-03-09 Gary Thomas <[email protected]>
* ecos.db: Add touch screen driver for Aglient AAED-2000.
2002-03-08 Nick Garnett <[email protected]>
* ecos.db: Fix Integrator aliases.
2002-03-06 Nick Garnett <[email protected]>
* ecos.db: Added new target: integrator_arm9 for ARM9 based
integrator boards.
Renamed CYGPKG_DEVS_FLASH_INTEGRATOR to
CYGPKG_DEVS_FLASH_ARM_INTEGRATOR for consistency with other
packages.
2002-02-18 Jesper Skov <[email protected]>
* ecos.db: Added SH2 etherc package.
2002-02-08 Jonathan Larmour <[email protected]>
* pkgconf/rules.mak: Fix the below fix which had too _few_ backslashes!
2002-02-04 Gary Thomas <[email protected]>
* ecos.db: Add [contributed] port to CerfCube & CerfPDA.
2002-02-02 Jonathan Larmour <[email protected]>
* pkgconf/rules.mak: Fix bug with too many backslashes in sed.
2002-01-29 Nick Garnett <[email protected]>
* ecos.db: Added CYGPKG_IO_SERIAL_ARM_IQ80321.
2002-01-28 Gary Thomas <[email protected]>
* ecos.db: Split network support into generic and stack
implementations. Move BSD based stack to one implementation.
Add FreeBSD based (new) stack as another.
2002-01-21 Jonathan Larmour <[email protected]>
* ecos.db: Add JFFS2 package.
2002-01-21 Mark Salter <[email protected]>
* ecos.db: Add Intel 82544 ethernet for iq80321.
2002-01-08 Jonathan Larmour <[email protected]>
* ecos.db: Add synthetic flash driver package, and add it to the
synthetic linux target.
2002-01-03 Mark Salter <[email protected]>
* ecos.db: Use generic i82559 driver for iq80310.
2001-12-20 Koichi Nagashima <[email protected]>
* ecos.db: Add CqREEK SH7750 flash driver.
2001-12-12 Mark Salter <[email protected]>
* ecos.db: Add XScale "Verde" (IOP80320) and IQ80321 packages.
2001-12-06 Nick Garnett <[email protected]>
* ecos.db: Change names on i82544 package so they don't clash with
the i82559 package.
2001-11-27 Nick Garnett <[email protected]>
* ecos.db: Added Intel i82543/82544 Gigabit ethernet card packages
and a pc_giga target. This latter is a temporary measure until we
work out how best to support targets that can have a variety of
different hardware configurations.
2001-11-22 Jesper Skov <[email protected]>
* pkgconf/rules.mak: Added HOST_CC definition. This really belongs
in the top-level makefile, but requires tool changes.
2001-11-21 Andrew Lunn <[email protected]>
* pkgconf/rules.mak (tests.stamp): Be explicit about substitution
to avoid potential problems with trailing spaces.
[Bug #56239]
2001-11-14 Jesper Skov <[email protected]>
* ecos.db: edb7xxx target now uses generic CS8900A driver.
2001-11-07 Jesper Skov <[email protected]>
* ecos.db: Added generic CS8900A package to AAED2000 template.
2001-11-06 Mark Salter <[email protected]>
* ecos.db: Add malta_mips64_5kc target.
2001-11-02 Jesper Skov <[email protected]>
* ecos.db: Added CS8900A package.
2001-10-30 Jonathan Larmour <[email protected]>
* ecos.db: Added ARM Integrator target including HAL, serial driver,
eth driver and flash driver packages.
2001-10-30 Jesper Skov <[email protected]>
* ecos.db: Added AAED2000 packages.
2001-10-19 Lars Lindqvist <[email protected]>
2001-10-19 Jonathan Larmour <[email protected]>
* ecos.db: Add AEB-2 (E7T) serial drivers.
2001-10-12 Jonathan Larmour <[email protected]>
* ecos.db: Clarify Cirrus Logic related packages' descriptions.
2001-10-12 Jonathan Larmour <[email protected]>
* ecos.db: Remove separate CYGPKG_DEVS_FLASH_STRATA_EDB7XXX package,
and instead use a consolidated CYGPKG_DEVS_FLASH_EDB7XXX package.
2001-09-27 Hugo Tyson <[email protected]>
* ecos.db: Add CYGPKG_DEVS_ETH_INTEL_I21143 and
CYGPKG_DEVS_ETH_MIPS_VRC4375, and add them to the target vrc4375.
2001-09-26 Gary Thomas <[email protected]>