summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 5e92f3062e67aa2d94f0d5e434e05f359aaaea58 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
2006-01-31 Robert Schwebel <r.schwebel@pengutronix.de>

	* openssh: fix autogenerated dependency (patch by Ladislav
	  Michl)

2006-01-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* mico: added support for MICO. 

2006-01-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: this is a technology preview of the upcoming 0.9
	  series of PTXdist. Not everything is working right now,
	  but we have autogenerated dependencies.

2006-01-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: merged destdir branch into 0.9-trunk
	  kernel: replaced DONT_COMPILE_KERNEL by 
	  COMPILE_KERNEL

2005-12-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* trunk: migrated destdir branch to new 0.9 trunk
	  The tree is now using destdir/sysroot as it's standard
	  mechanism. It doesn't work in all places, but it's the
	  way to go for the future. 

2005-12-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules: remove some bogus mkdir $(IMAGEDIR)s; 
	  Patch by Ladislav Michl

	* bash: fixed PATH; patch by Vince Chen

2005-12-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.7.8. This is just an intermediate
	  release. We are working hard towards 1.0, so expect
	  things to be completely broken. You have been warned.

2005-11-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: re-unified TOPDIR and PTXDISTDIR to become
	  PTXDIST_DIR now. 
	* makefiles: out-of-tree builds should work now; just 
	  make an empty directory, link the PTXdist toplevel
	  Makefile there and do everything you want. This feature
	  probably needs more testing, but it's a beginning.
	* kconfig/lxdialog: migrated to be hosttools, but still
	  with the strange effect that they need to be in 
	  scripts/* seen from the Makefile. 

2005-11-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* ntpclient: targetinstall fixed; patch by Steven Scholz

2005-11-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* klibc: added

2005-11-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* uml/native: fixed console

2005-10-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* python24: fixed build dir; patch by Mike Wakerly

2005-10-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* dropbear: fix DROPBEAR_CONVERT typo; patch by
	  Mike Wakerly

2005-10-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: new fully configurable rootfs/etc templates
	  to avoid duplicate files in ipkg packets.

2005-10-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released PTXdist 0.7.7

2005-10-21 Robert Schwebel <r.schwebel@pengutronix.de>

	* mknbi: added mknbi support; patch by Mike Wakerly. 
	
2005-10-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* epoll: removed rules/epoll.in, seems to be obsolete.
	* rtai: removed rtai in kernel config, could now be done with
	  the patch stack mechanism (in case anybody would be
	  interested)
	* lrzsz: fixed, builds now. Patch by Ladislav Michl, modified
	  to actually build something on targetinstall.
	* dhcp: update from 3.0.1 to 3.0.3; patch by Ulf Samuelsson
	* sysvinit: patch by Oscar Peredo added.
	* zlib: build also static zlib; patch by Kai-Uwe Bloem
	* uclibc: install libthread_db if gdbserver is used; patch by
	  Kai-Uwe Bloem.
	* gettext: fixed stuff all over the place; make ipkg install
	  work. Patch by Kai-Uwe Bloem

2005-09-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* Makefile: more makefile cleanups. New policy: everything is
	  now built in a "workspace"; usually nothing changes, but if 
	  you set PTXDISTWORKSPACE we build there. (UPDDATE: this is 
	  PTXDIST_WORKSPACE in more recent versions)
	* paths: moved local_patches to patches; as the patch repository
	  is now in the SVN repository there's no need to copy patches
	  around. Policy: look for patches in $(TOPDIR)/patches and in
	  $(PROJECTDIR)/patches. 
	* toolchains: added gcc 3.3.3 glibc 2.3.2 toolchain
	  for x86, corresponding to arm. Debian is broken at the moment.
	  

2005-09-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* misc: removed ptx-init-permissions.sh; this is obsolete now that
	  we have the fakeroot based permission mechanism.

2005-09-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* dotgnu: added initial support; patch by Benedikt Spranger
	* busybox: added patch to make gcc 4.x happy; patch by 
	  Benedikt Spranger
	* coreutils: added get_patches; patch by Benedikt Spranger
	* grub: update from 0.95 to 0.97; patch by Benedikt Spranger
	* kernel: 2.6.13 is also available on PPC; patch by Benedikt
	  Spranger
	* nmap: update from 3.48 to 3.93; patch by Benedikt Spranger
	* openssl: use cross-ar; patch by Benedikt Spranger
	* rsync: update from 2.6.3 to 2.6.6. Patch by Benedikt Spranger
	* Rules.make: fix LIB for relative paths; patch by Benedikt
	  Spranger
	* Version.make: fix extraversion whitespace handling; patch by
	  Mike Wakerly

2005-09-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxmlconfig: version update
	* libpv: version update
	* liblist: version update

2005-09-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxslt: added xsltproc

2005-09-02 Robert Schwebel <r.schwebel@pengutronix.de>

	* added apache2

2005-08-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* libpv: added
	* liblist: version update

2005-08-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: Without the patch I get an empty /media dir although
	  PTXCONF_ROOTFS_MEDIA is not set. Patch by Steven Scholz.

2005-08-04 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: added patch to reduce compile time 
	   	   patch submitted by Steven Scholz
	
	* util-linux: fix install of mount, add option for umount
		      patch by Steven Scholz

	* host-mtd: fixed build of jffs2dump util; patch by Gary Thomas

	* rawrec: added; patch by Christian Gagneraud
	
2005-08-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs: add mechanism for /media mountpoints

2005-07-28 Bjoern Buerger <b.buerger@pengutronix.de>

	* iptables: fixed install stage; patch by Alexandre Bastos
	* netkit-ftp: added; patch by Gilad Ben-Yossef
	* cfgsh: added; patch by Gilad Ben-Yossef
	
2005-07-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* release: released 0.7.6

2005-07-27 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) reordered config; patch by Steven Scholz

2005-07-26 Bjoern Buerger <b.buerger@pengutronix.de>
	
	* ntpclient: added; patch by David Updegraff

2005-07-22 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) make busybox udhcpc.script optional;
		   patch by Steven Scholz + some helptext
		   
	* minor documentation fixes

2005-07-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxmlconfig: added

2005-07-21 Bjoern Buerger <b.buerger@pengutronix.de>

	* busybox: (udhcpc) install fix; patch by  Brian Murphy 

2005-07-19 Bjoern Buerger <b.buerger@pengutronix.de>

	* pcmciautils: added initial version; patch by Steven Scholz

2005-07-16 Robert Schwebel <r.schwebel@pengutronix.de>

	* ncurese: fixed install names for forms; patch by
	  Steven Scholz. 
	* tcpwrapper: There is a needless builtin dependency 
	  in Portmap_4 for tcpwrapper. Which at the very 
	  least causes excess downloads&compiles. This 
	  patch by David Updegraff detects whether 
	  tcpwrapper was infact explicitly selected or not
	  and deals with it.
	* udev: fixed PTXCONF_ macros. Patch by David Updegraff. 
	* host/cross: fix host paths; patch by Ladislav Michl
	* kernel: use find instead of ls to find files; patch 
	  by Ladislav Michl
	* Virtual.make: add hosttool-mtd if we want to build a 
	  jffs2 root image; patch by Steven Scholz

2005-07-14 Bjoern Buerger <b.buerger@pengutronix.de>

	* nfs-utils: bugfix, ipkgized some config files.

2005-07-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* chrony: autotoolized and added workaround for broken kernel headers
	* patches: moved primary patch repository into $(TOPDIR)/local_patches

2005-07-13 Bjoern Buerger <b.buerger@pengutronix.de>
	
	* libxslt: added missing configure options
	  fixed libxml2-prefix

	* host-tools: switched HOSTTOOLS to HOST_PACKAGES; 
	  patch by Ladislav Michl 

2005-07-12 Bjoern Buerger <b.buerger@pengutronix.de>
	
	* e2fsprogs: update to 1.38, documentaion fixup
	  tune2fs, findfs, e2label added to install stage.
	
2005-07-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* libxml2: several typos fixed; missing options added
	* libxslt: added
	* xmlstarlet: added
	
2005-07-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* libnet: removed bogus -C; patch by Oscar Peredo P.

2005-07-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* liblist: added

2005-07-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* thttpd: fixed installation
	* gnuplot: didn't compile correctly

2005-07-04 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg-test: use PTXCONF_ROOT instead of $TOPDIR/root; patch
	  by Steven Scholz

2005-07-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: use modutils for 2.4, module-init-tools for 2.6
	* Makefiles: first bunch of Christian Gagneraud's host/cross
	  consolidation patches
	* libcgicc: added; Patch by Alessio Igor Bogani
	* kernel: build umkimage only if needed; patch by Steven Scholz
	* kernel: fixed typo; patch by Steven Scholz
	* config: change PTXCONF_EXP to PTXCONF_EXPERIMENTAL and
	  PTXCONF_EXP_M to PTXCONF_EXPERIMENTAL_MORE. Patch by
	  Steven Scholz.
	* kernel: added 2.6.12; patch by Ladislav Michl
	* umkimage: convert XCHAIN_UMKIMAGE to HOSTTOOL_UMKIMAGE and upgrade
	  mkimage to version 1.1.2; patch by Ladislav Michl.
	* ipkg: update to 0.99.151; this fixed the problems which
	  previously have been marked by some FIXMEs. Patch by Steven
	  Scholz. UPDATE: patch reverted (rsc); this new version tries
	  to install .list and .control files on host side paths inside
	  the root directory. 
	* ipkg-push: install ipkg.py which was missing; patch by Steven
	  Scholz.
	* ipkg-push: "wc -w" will never return "1" but "      1".
	  patch by Steven Scholz
	* sysfsutils: update to 1.3.0; patch by Steven Scholz
	* Makefile: fixed svn-up and svn-stat targets
	* ssmtp: update to 2.61-3, clean up URLs; patch by
	  Steven Scholz
	* module-init-tools: update to 3.2-pre7; patch
	  by Steven Scholz

2005-06-30 Bjoern Buerger <b.buerger@pengutronix.de>

	* ntpd: fixed dependencies

	* openntpd: fixed install paths, dependencies

	* chrony: added version 1.20

2005-06-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* thttpd: update to 2.25b; fixed install path

2005-06-21 Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: split kernel and modules into two ipkgs, make 
	  external kernel installable remove unnecessary compile 
	  step when DONT_COMPILE_KERNEL is selected; patch by
	  Steven Scholz

	* scripts: use old style syntax for mktemp; patch by 
	  Steven Scholz, modified by Robert Schwebel

	* joe: added; patch by Oscar Peredo P.

	* Rules.make: if you have relative, cross-directory symlinks in                                                                  
	  your target library area, 'make install' will fail: 
	  - LIB_DIR=`dirname $$LIB`;
	  + LIB_DIR=`dirname $${LIB_DIR}/$$LIB`;
	  Patch by Oscar Peredo P. and David Updegraff

	* *.make: added Emacs syntax hints; patch by Christian Gagneraud

	* ipkg: since "you need ipkg-cl in your path" when creating ipgk files
	  for the target HOSTTOOL_IPKG must be selected when IMAGE_IPKG is
	  selected. Patch by Steven Scholz

	* Rules.make: remove old _root macros; patch by Ladislav Michl. 

2005-06-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* jffs2: fixed macro names; patch by Steven Scholz 

2005-06-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* pcmcia-cs: update and fix of targetinstall rules; patch 
	  by Steven Scholz
	* makefile: added svn-stat and svn-up targets
	* Kconfig: restructured menues 

2005-06-10 Robert Schwebel <r.schwebel@pengutronix.de>

	* valgrind: added; patch by Shahar Livne
	* cppunit: added; patch by Shahar Livne

2005-06-06 Robert Schwebel <r.schwebel@pengutronix.de>

	* inetutils: added "real" syslogd
	* release: released 0.7.5
	
2005-06-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* e2fsprogs: fix hosttools vs. hosttool; patch by Christian
	  Gagneraud

2005-06-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* tcpdump: update to 3.9.1

2005-06-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* dosfstools: added; patch by Steven Scholz
	* NATIVE: use COMPILER_PREFIX instead of 
	  PTXCONF_COMPILER_PREFIX

2005-05-30 Robert Schwebel <r.schwebel@pengutronix.de>

	* overall: replaced all HOSTTOOLS by HOSTTOOL; 
	  patch by Steven Scholz
	* memedit: update to 0.6
	* ltp: added more test menus

2005-05-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* dbench: added

2005-05-26 Bjoern Buerger <b.buerger@pengutronix.de>

	* netcat: changed from hobbit netcat to gnu netcat 0.7.1

2005-05-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* fakeroot: update to 1.3.0; patch by Oscar Peredo P.
	* lilo: update to 22.5.9; patch by Oscar Peredo P.

2005-05-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* ltp: initial LTP support
	* glibc: install libc.so.6 instead of libc.so; this does
	  also work with the NATIVE method. 
	* ntp: remove duplicate ntpdc
	* proftpd: update to 1.3.0rc1; patch didn't work
	  with new NATIVE mechanism; fixed. 
	* gdb: select glibc libs only if GLIBC_INSTALL
	* memedit: use default autoconf variables
	* util-linux: update to 2.12j
	* ipkg: added 'make ipkg-push' which updates an ipkg archive
	  from freshly created packets
	* ipkgs: version number is now fixed against PTXdist version;
	  this is necessary because changing options results in
	  different ipkg packets. We now have a project revision 
	  number as well, which does also go into the ipkg packet. 
	* ntp: added ntpd, tools
	* Kconfig: added mechanism for tests

2005-05-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* grub: fixed installation of grub binary; 
	  patch by Shahar Livne

2005-05-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* rootfs.in: typo fixed; patch by Steven Scholz
	* wireless: update to version 27, config option
	  to build shared version; patch by Steven Scholz

2005-05-17 Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: fix static building; patch by Gary Thomas

2005-05-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* hotplug: fixed permissions for agents
	* release: released 0.7.4

2005-05-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* expat: fixed links; patch by Ladislav Michl
	* Makefile: added check for ncurses.h

2005-05-10 Robert Schwebel <r.schwebel@pengutronix.de>

	* wget: added

2005-05-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* Makefile: added missing jffs2 extra args; patch 
	  by Steven Scholz
	* Makefile: fixed output on images clean
	* Rules.make: sanity check for local patch URLs

2005-05-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* uclibc, crosstool: ported to crosstool 0.32 and fixed
	  the remaining problems. uClibc does now also use the
	  mechanism from glibc which directly copies the C library
	  from the toolchain to the target. 

2005-05-05 Robert Schwebel <r.schwebel@pengutronix.de>

	* ssmtp: added packet; patch by Steven Scholz
	* Makefiles: sets the KERNEL_VERSION_xxx variables even 
	  when anexternal kernel is used; patch by Steven Scholz
	* openssl: update to 0.9.7g (RSC); fixed configure
	  option for i686 (patch by Oscar Peredo)

2005-05-02 Robert Schwebel <r.schwebel@pengutronix.de>

	* coreutils: added patchin; patch by Benedikt Spranger
	* hosttool-ipkg: typo; patch by Steven Scholz
	* bonnie++: path fix; patch by Steven Scholz
	* rootfs: added configurable arch for ipkgs; patch 
	  by Steven Scholz
	* Makefile: added documentation for make images; patch
	  by Thibaut Varene
	* apache, php: added support for apache and PHP; patch by 
	  Jiri Nesladek
	* fltk: fixed wildcard install; patch by Steven Scholz
	* troll-ftpd: fixed typo; patch by Pauli Anttila 
	  and Ladislav Michl
	* mgetty: fixed path; patch by Pauli Anttila and Ladislav Michl
	* modutils: fixed URL; patch by Pauli Anttila and Ladislav Michl

2005-04-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* libnet: fixed download path
	* util-linux: patch to compile cfdisk, by Garry Thomas

2005-04-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* memstat: added
	* TODO: updated
	* ipkg: several packets ipkgized
	* Makefile: added ipkg consistency test

2005-04-26 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkgized: gcclibs, strace, utelnetd, zlib, 
	  tcpdump, sysutils
	* xchain: removed obsolete kernel xchain stuff; 
	  patch by Ladislav Michl
	* smtpclient: fixed permissions; patch by Ladislav Michl
	* hotplug: fixed permissions for directories
	* gnupg: added; patch by Jiri Nesladek
	
2005-04-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* freetype: freetype214 is now freetype (patch by Steven Scholz)

2005-04-24 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: converted rest of the packets which already used
	  copy_root & friends. 
	* glibc: ipkgized; converted macros for toolchain copy
	* proftpd: moved config from rootfs to proftpd packet

2005-04-18 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: adding PTXCONF_IMAGE_IPKG_EXTRA_ARGS; Now one can tell
	  ipkg-build to use tar instead of ar and more. Patch by Steven
	  Scholz
	* sqlite: ipkgized; patch by Ladislav Michl
	* Makefile: changed PROJECT_RULES into PROJECTRULES (typo); 
	  patch by Ladislav Michl
	* fltk: config option for fluid cross compilation; patch by
	  Steven Scholz. 
	* Rules.make: whitespace cleanup; patch by Ladislav Michl
	* freetype: removed unnecessary dependencies; patch
	  by Steven Scholz

2005-04-14 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: fixed ipkg path; patch by Steven Scholz

2005-04-13 Steven Scholz <steven.scholz@imc-berlin.de>

	* fltk:
	  - update to version 1.1.6
	  - add configuration options
	  - allow cross compile
	  - replaced = by += for autotools options

2005-04-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* makefile: added support for local rules 

2005-04-13 Gary Thomas <gary@mlbassoc.com>

	* check_version: fixed macro to work even for fedora and other
	  uggly distributions.  

2005-04-12 Ladislav Michl <ladis@linux-mips.org> 

	* flex: added for host
	* makefile: fix missing bits of support for custom menues

2005-04-12 Gary Thomas <gary@mlbassoc.com>

	* rules/[mtd,lilo,xfree430,netcat,hosttool-e2fsprogs,e2fsprogs].make: 
	  Clear up distinction between toolchain triplet (PTXCONF_GNU_TARGET) 
	  and compiler prefix (PTXCONF_COMPILER_PREFIX) as they are not 
	  always related 1-1.

2005-04-11 Ladislav Michl <ladis@linux-mips.org>>

	* util-linux: added mount

2005-04-08 Gary Thomas  <gary@mlbassoc.com>

	* rules/bridge-utils.in: 
	* rules/bridge-utils.make: 
	* rules/networking.in: Add bridge-utils package.
	* rules/rsync.make: Upgrade to latest [available] package.
	* rules/util-linux.in: 
	* rules/util-linux.make:
	* local_patches/util-linux+cfdisk.patch:          
	  Support building sfdisk, cfdisk for target.

2005-04-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* ipkg: added initial support for ipkg packets
	* menus: added support for custom menues

2005-04-06 Robert Schwebel <r.schwebel@pengutronix.de>

	* setup: add proxy support to 'make setup'. 

2005-03-28 Gary Thomas  <gary@mlbassoc.com>

	* rules/wireless.make: Build tools to run on target system.

2005-03-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* shorewall: update to 2.2; patch by Rex Tsai

2005-03-22 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.3 released

2005-03-21 Sascha Hauer <s.hauer@pengutronix.de>

	* configs: the PS1 prompt somehow gets mangled from time 
	  to time. We cannot reproduce when it happens, but fix
	  it for the release. 

2005-03-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* setup: we now use ~/.ptxdistrc
	* module-init-tools: added variant for hosttools; the
	  kernel tries to depmod the modules, but at least on
	  debian depmod claims that the modules are for the 
	  wrong architecture.

2005-03-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* offline building: we have a new mechanism for offline 
	  building now. Site configurations, like where the sources
	  directory, patches and feature patches can be found, are
	  now configurable via 'make setup' and a .setup file. 
	  Note that the default paths are now $(TOPDIR)/local_src,
	  $(TOPDIR)/local_patches and $(TOPDIR)/local_featurepatches
	* bootdisk: moved content of bootdisk/ into images/
	* expat: added in file for libexpat, to make it selectable

2005-03-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* dropbear: fixed make environment; thanks to 
	  Manfred Gruber for showing up the problem. 
	* mtd-utils: fixed missing CPPFLAGS
	* Makefile: fixed bogus error messages
	* crosstool: added support for gcc-3.4.3 and 
	  glibc-2.3.4 into crosstool patches

2005-03-11 Sascha Hauer <s.hauer@pengutronix.de>

	* 0.7.2 released

2005-03-01 Robert Schwebel <r.schwebel@pengutronix.de>

	* mgetty: add patching support (patch by Steven Scholz)

2005-02-28 Robert Schwebel <r.schwebel@pengutronix.de>

	* images: added support for UBoot ramdisk images; patch 
	  by Steven Scholz
	* efax: path fix; patch by Steven Scholz
	* mgetty+sendfax: moved to communication utilities; patch
	  by Steven Scholz. 

2005-02-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* general: support for OMAP added (Ladislav Michl)
	* fakeroot: update to 1.2.4 (Robert Schwebel)
	* openssh: update to 3.9p1 (patch by Ladislav Michl)
	* rootfs: make /tmp accessable for all and make it
	  sticky (patch by Ladislav Michl)

2005-02-08 Robert Schwebel <r.schwebel@pengutronix.de>

	* smtpclient: added 1.0.0 (Robert Schwebel)

2005-01-31 Robert Schwebel <r.schwebel@pengutronix.de>

	* libexpat: update to 1.95.8, patch by Benedikt Spranger 
	* freetype: update to 2.1.9, patch by Benedikt Spranger
	* glibc: fixed NPTL config dependencies; patch by Benedikt Spranger
	* glibc: support for 2.3.4; patch by Bendikt Spranger
	* libxml2: build without python support by default; patch 
	  by Benedikt Spranger
	* netcat: new URL; patch by Benedikt Spranger
	* module-init-tools: added; patch by Ladislav Michl
	* Makefiles: Consolidate CROSS_ENV_; patch by Ladislav Michl

2005-01-20 Robert Schwebel <r.schwebel@pengutronix.de>

	* jffs2: make adding extra arguments to mkfs.jffs2 
	  possible (patch by Steven Scholz)
	* mgetty: install callback as suid root (patch
	  by Steven Scholz) 
	* source options: add unified path for programs 
	  hosted on debian mirrors. Patch by Thibaut Varene. 
	* kconfig/lxdialog: updated to version from 2.6.10;
	  kconfig has a unified prefix (PTXCONF_) macro now.
	  Patch by Thibaut Varene. 
	* arm0815: added generic arm project (Benedikt Spranger)
	* bash: update to 3.0 (Benedikt Spranger)
	* glibc: support for NPTL and TLS (Benedikt Spranger)
	* procps: added support for more tools (Benedikt Spranger)

2005-01-11 Robert Schwebel <r.schwebel@pengutronix.de>

	* cuckoo-test: remove false positives for terminfo files
	* make xconfig: fixed and works now. 
	* fakeroot: update to 1.2.2
	* memedit: renamed fpgaedit to memedit
	* Decided that we need a ChangeLog again :-) 
	* scripts/collect-sources.sh: fixes to make this script work (MKL)
	* CVS directory magic: not needed any more on SVN
	* fs2: image creation done by default mechanism
	* efco: use standard mechanisms for etc copying
	* frako: removed relais driver
	* rayonic: fixed configuration, added to audit runs
	* innokom: activated getty, run-parts
	* nge: use coreutils dd instead of busybox; added fpgaedit
	* troll-ftpd: added
	* dropbear: update to 0.43
	* nc: make installable
	* gdb: update to 6.3 and fixed cross compilation (MKL)
	* openssl: fixed crosscomp stuff
	* mgetty: added sendfax support
	* fpgaedit: added
	* procps: update (2.0.16 -> 3.0.4)
	* readline: added
	* coreutils: added dd
	* dialog: added snapshot release

2004-11-16 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.1 released

2004-09-27 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.7.1 released

2004-02-13 Robert Schwebel <r.schwebel@pengutronix.de>

	* configs: updated to current Kconfig scenario
	* rules/util-linux.in: 'PTXdist goes stoneage': clock added (BSP)
	* mgetty+sendfax: added (BSP)
	* thttpd: cosmetics... (BSP)
	* innokom: udhcpd.conf, init.d/usbnet: Add udhcp config
	  options and USB net start script.
	* dhcp.make: update to later version, but still does not
	  crosscompile. 
	* innokom/inittab: Add USB network port.
	* config/innokom.ptxconfig: Enable udhcpd.
	* Makefile: Update version number
	* busybox: Update to BB 1.0.0-pre7
	* kernel: Finally fix feature patch stack mechanism. 
          Should work now as expected...
	* config/innokom.ptxconfig: Fixup configuration for ppp & patch
	  stack
	* config/innokom.ptxconfig: fix correct config file
	* config/kernel/kernel-2.4.19-innokom: fix correct kernel config

	* 0.5.2 released

2004-02-05 Robert Schwebel <r.schwebel@pengutronix.de>
	* xchain: lots of tweaks to make innokom work again
	* glibc: compile with softfloat when target does not have floating
	  point support
	* penguzilla: some bug fixes (BSP)
	* xchain-gcc: made softfloat and multilib configurable options,
	  necessary if you want to build 3.3.2 toolchain for targets 
	  without FPU; added gcc-3.3.2 support for x86 target; added new
	  standard target for building a gcc-2.95.3 standalone toolchain
	* grub: added reiserfs tweak; some bugfixing; more network chips
	  supported
	* kernel: don't simply answer yes when oldconfig fails
	* Makefile: fix multiple inclusion of Rules.make & friends
	* rules: fix CROSS_ENV_* variables for preprocessor and cc
	* kconfig: added PTXCONF_PROJECT to have the name available

	* 0.5.1 released

2004-01-05 Robert Schwebel <r.schwebel@pengutronix.de>
	* general: feature patch is merged
	* general: lots of added packages all over the place
	* general: added 'configs' target
	* general: audited supported configurations
	* uclibc: removed for now; it did not configure and 
	  compile cleanly. Will be re-added after the problems 
	  have been fixed. 

	* 0.5.0 released

2003-11-xx Robert Schwebel <r.schwebel@pengutronix.de>

	* distcc: added support (Dan Kegel)

2003-10-23 Robert Schwebel <r.schwebel@pengutronix.de>

	* 0.4.0 released: this is the same as 0.3.25, but starts 
	  a new stable series. Next step is that we merge the 
	  feature-branch into cvs head and open up a new series. 

2003-10-09 Robert Schwebel <r.schwebel@pengutronix.de>

	* glibc: tweaked xchain to not install target binaries in crosschain
	  bin directory (thanks to Kai-Uwe Bloem, Auerswald. 
	* 0.3.25 released

2003-10-07 Robert Schwebel <r.schwebel@pengutronix.de>

	* etc: moved innokom directory to new scheme 
	  without time stamp (not necessary any more)

2003-10-07 Kai-Uwe Bloem <linux-development@auerswald.de>

	* cramfs tools: added
	* innokom: configuration update

2003-10-xx Robert Schwebel <r.schwebel@pengutronix.de>

	* nmap: Fix nmap to care for the PTXCONF_OPENSSL 
	  switch. (Milan Bobde, Ixia)

2003-09-25 Robert Schwebel <r.schwebel@pengutronix.de>

	* Documentation: added attempt of a documentation dir
	* Toplevel Makefile: fixed "dot" detecttion (thanks 
	  to Dan Kegel) 
	* pcmcia-cs: added initial support, although untested. 
	* inetutils: added. (Milan Bobde, Ixia) 
	* general: lots of new handy macros (Marc Kleine-Budde)
	* genext2fs: added, untested. (Milan Bobde, Ixia) 
	* ltt: fixed cross compilation (Kai-Uwe Bloem, Auerswald)

2003-09-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: fixed get_patches. 
	  Kai-Uwe Bloem <linux-development@auerswald.de>
	* rootdir: replaced platform dependend links in rootdir by new 
	  mechanism: run a per-platform makefile (rules/vendor-tweaks/*)
	  which is configurable. Idea by Kai-Uwe Bloem, Implementation
	  Robert Schwebel
	* ltt: changed visualizer to be compiled for host; fix by
	  Kai-Uwe Bloem. 

2003-09-18 Robert Schwebel <r.schwebel@pengutronix.de>
	* forgotten topics for 0.3.24 changelog (sorry 'bout that): 
	* pdksh: added;  Kai-Uwe Bloem <linux-development@auerswald.de>
	* ltt: added; Kai-Uwe Bloem
	* gdb/gdbserver: Kai-Uwe Bloem
	* strace: Kai-Uwe Bloem

2003-09-17 Robert Schwebel <r.schwebel@pengutronix.de>
	* patch system: added generic patch system which gets patches
	  from a web repository; inserted all of Dan Kegel's patches
	* ltt: added support for Linux Trace Toolkit
	* general: Execute dot only when available and avoid error otherwhise. 
	* general: made root/ directory configurable
	* general: introduced generic architecture support file in
          config/arch/
	* configs: added configurations for roi-eics, scII-bmwm, scII-cameron;
	  updated innokom configs
	* toplevel make: added getclean target; fixes in archive mechanism
	* config: support for extra CFLAGS and CXXFLAGS
	* general: add customer specific "addons" directory
	* kernel: support for linux-2.4.22
	* rtai: support for rtai-24.1.11
	* mtd: added mkjffs2 tools
	* libnet: added support for libnet
	* mips: support for big and little endian
	* busybox: update to 1.00-pre3; configuration allows multiple bbs now. 
	* XFree86: added
	* Mozilla-Firebird: added
	* NEWPACKET: added script to support creation of new rules files
	* 0.3.24 released

2003-08-14 Robert Schwebel <r.schwebel@pengutronix.de>
	* Preparation for release
	* glibc: some fixes to find out where the _G_config.h problem comes
	  from. This is still not resolved but I release anyway to test it
	  on other systems; currently the generic configuration is reported
	  to work on Debian stable and testing systems but fails on unstable
	  here. More research has to be done...
	* 0.3.23 released

2003-08-08 Robert Schwebel <r.schwebel@pengutronix.de>
	* Config: i386-generic-glibc configuration added
	* rayonic config: use GNU libio (workaround for _G_config.h not
	  being found under uncontrolled conditions...)
	* Makefile: .rtaiconfig added, also to distclean; bootimage removal 
	  fixed; logfile removal fixed. 
	* rules/bootdisk.make: fixed Rayonic bootdisk to work again. 
	* rules/zebra.make; rules/wireless.make; rules/flash.make added

2003-06-24 Kai-Uwe Bloem <linux-development@auerswald.de>
	* innokom configs:  updated
	* innokom /etc template: largely reworked
	* added: pdksh
	* added: strace
	* added: gdb and gdbserver

2003-04-28 Marc Kleine-Budde <kleine-budde@gmx.de>
	* openssl.make: openssl.prepare: deps on gccstage2.install if
	xcompiler is selected
	* openssl.make: added support for 386 and i586 targets

2003-04-27 Marc Kleine-Budde <kleine-budde@gmx.de>
	* Config.in: added 586 target
	* e2fsprogs.make: target clean cleans now builddir
	* grub.make: the crosscompiler is now used
	* grub.make: fix typo: --disable-enable-cs89x0
	
2003-04-25 Marc Kleine-Budde <kleine-budde@gmx.de>
	* xchain-kernel.make: introduced xchain_kernel_extact_deps, only
	depending on MTD if wanted (saves us downloding MTD if not needed)
	* xchain-gccstage1.make: changed GCC_PREFIX to PTXCONF_GNU_TARGET
	* xchain-gccstage2.make: xchain-gccstage2_prepare: made threads in
	gcc depending on glibc threads
	* xchain-gccstage2.make: xchain-gccstage2_compile: removed -Os
	from CXXFLAGS_FOR_TARGET, because gcc doesn't like opts.
	[see: http://www.linuxfromscratch.org/view/3.3/chapter06/gcc.html]

2003-04-24 Marc Kleine-Budde <kleine-budde@gmx.de>

	* xchain-glibc.make: glibc.targetinstall: changed the names of the
	libs, they have the same name as beeing installed by glibc's make
	install
	* bash.make: bash-prepare: added deps to gccstage2 if defined
	xchain
	* e2fsprogs.make: e2fsprogs-prepare: added deps to gccstage2 if
	defined xchain
	* Makefile: target clean and rootclean, are deleting now
	* xchain-glibc.make: glibc_get: changed dep from glibc-base.get to
	glibc.get, to get the patches too

2003-04-23 Marc Kleine-Budde <kleine-budde@gmx.de>

	* xchain-kernel.make: xchain-kernel.prepare: removed touch of
	autoconf.h, that's done already in xchain-kernel.extract
	* xchain-gccstage1.make: xchain-gccstage1.prepare: removed touch
	of autoconf, and 'construction' of version.h, that's done already
	in xchain-kernel.extract
	* xchain-glibc.make: glibc-prepare: removed optimisation from
	GLIBC_CFLAGS (like -mpcu)
	[see: http://www.linuxfromscratch.org/view/3.3/chapter05/gcc.html]
	* Config.in: make GRUB dependend on X86

2003-04-22 Marc Kleine-Budde <kleine-budde@gmx.de>

	* openssh.make: changed URL, points now to existing sources
	* openssl.make: changed URL, points now to existing sources

2003-04-20 Marc Kleine-Budde <kleine-budde@gmx.de>

	* Config.in: added Kernel image format vmlinux
	* xchain-kernel.make: handles now vmlinux kernel format
	* xchain-kernel.make: added arch to KERNEL_TARGET_PATH for zImage
	and bzImage
	* xchain-kernel.make: removed double rule
	$(STATEDIR)/xchain-kernel.get
	* xchain-kernel.make: xchain-kernel.extract: version.h is now
	automatically generated by kernel's make
	* xchain-kernel.make: kernel.prepare: ARCH in kernel's Makefile is
	now always setted to PTXCONF_ARCH
	* xchain-kernel.make: kernel.prepare: CROSS_COMPILE in kernel's
	Makefile is now always setted to PTXCONF_GNU_TARGET
	* xchain-kernel.make: kernel.targetinstall: copying the kernel to
	rootdir is now arch independent, using KERNEL_TAGET_PATH
	* bootdisk.make: copying the kernel to bootdisk is now arch
	independent, using KERNEL_TARGET_PATH
	* bootdisk.make: added link from menu.lst to grub.conf, cause new
	grub version use grub.conf

2003-04-19 Robert Schwebel <r.schwebel@pengutronix.de>

	* Rules.make: added GNU_HOST to get rid of hardcoded x86 compilers
	* config system: ARM architecture dependency fixed
	* glibc: libutil strip fixed
	* general: 0.3.22 released

2003-04-03 Robert Schwebel <r.schwebel@pengutronix.de>

	* openssh/openssl: added configuration option
	* x86: configuration re-tested; minor bugs fixed for portmap, 
	  glibc, mtdtools etc., to make this configuration compile again. 
	* general: 0.3.21 released

2003-03-15 Robert Schwebel <r.schwebel@pengutronix.de>

	* portmapper: added version 4
	* tcpwrapper: added version 7.6
	* autoconf257: added autoconf version 2.57, for nfs-utils
	* nfs-utils: version 1.0.1 added
	* general: several typos fixed
	* bash: fixed ruleset for bash; tested config options
	* general: 0.3.20 finalized

2003-03-05  Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: zImage was accidently always copied to the target
	* rootfs: fixed directory creation bugs
	* rootfs: fixes to make it work with several templates
	* general: 0.3.19 finalized

2003-03-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* rules: fix for .get dependencies, introduced get target 
	* general: 0.3.18 finalized

2003-03-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* kernel: workaround for xchain-kernel kernel sources
	* zlib: dependency bug fixed; separated into zlib and xchain-zlib.
	* general: 0.3.17 finalized

2003-03-02  Robert Schwebel <r.schwebel@pengutronix.de>

	* config system: updated to the linux-2.5.63 version of kconfig and
	  lxdialog. Fixed missing 'make clean' for lxdialog. 
	* kernel: new config options for choosing which kernel image format
	  shall be used. The kernel can now optionally be installed on the 
	  target system (e.g. for jffs partitions). 
	* kernel: split kernel package into kernel and xchain-kernel. This
	  avoids that the complete toolchain is recompiled when you change
	  something for the kernel (like patching it with RTAI). 
	* mtd: added package for MTD CVS snapshots, including the MTD user
	  space utilities. 
	* general: 0.3.16 finalized

2003-02-17  Robert Schwebel <r.schwebel@pengutronix.de>

	* ncurses: made ncurses compile with i386 cross environment
	* rtai: separated rtai-patches from other rtai stuff
	* glibc: fixed gcc-2.95.3 bug for x86
	* general: 0.3.15 finalized

2003-01-28  Robert Schwebel <r.schwebel@pengutronix.de>

	* openssl,openssh: added initial support (untested)
	* busybox: fixed configuration for strange register dump problem. 
	  XScale environment can be compiled now. 
	* general: 0.3.14 finalized


2003-01-14  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: kconfig transition finished. This should work now. 
	
	* general: 0.3.13 finalized

2003-01-11  Robert Schwebel <r.schwebel@pengutronix.de>
	
	* busybox: busybox-0.61.pre-ptx3 added, based on CVS snapshot 
	  from 2002/12/10. This version of busybox is based on kconfig, 
	  so it is possible to integrate this into our config system again.  

	* general: 0.3.12 finalized; this is an intermediate release; don't 
	  use it for production systems. 

2002-11-16  Robert Schwebel <r.schwebel@pengutronix.de>

	* general: fixed everything to make it work with the new 
	  configuration system

	* config system: ported to use the latest version from linux-2.5.47. 
	  I assume this will be the way to go in the future, as lkc doesn't
	  seem to be supported as a separate package any more. 

	* config system: fixed .config load bug

	* general: 0.3.11 finalized

2002-11-08  Robert Schwebel <r.schwebel@pengutronix.de>

	* config system: added lkc support

	* general: 0.3.10 finalized


2002-10-27  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxflash: /tmp and /home directory added

	* general: 0.3.9 finalized. 


2002-10-13  Robert Schwebel <r.schwebel@pengutronix.de>

	* glibc: now we install libnss_* to the target, which (surprise!) was
	the reason why proftpd didn't want to let our users login until now. 

	* general: 0.3.8 finalized. 

2002-10-12  Robert Schwebel <r.schwebel@pengutronix.de>
	
	* proftpd: added to the distribution.

	* glibc: support for glibc-2.2.3 added

	* general: 0.3.7 finalized.

2002-10-07  Robert Schwebel <r.schwebel@pengutronix.de>

	* menuconfig: bug fixed: use correct config file as default

	* lsh: key generation for target does work now. 

	* glibc: option for libm installation added. 

	* general: bugfixing; 0.3.6 finalized.

2002-10-04  Robert Schwebel <r.schwebel@pengutronix.de>

	* ptxflash: Utility to make a self contained bootstrap; 
	this is currently highly specific to the MOPSlcd4 board...

	* grub: GNU GRUB can now be installed; you can choose to 
	build a bootdisk for the target system in $PTXDIST/bootdisk.

	* e2fsprog: integrated, so we have mke2fs now. Has to be 
	better configurable.

	* Makefile: rootclean target re-introduced.

	* rtai: RTAI is now integrated. Needs more testing. 

	* config system: version number fixed. The archive target gives a
	warning now, we should change this to a permanent fix. 

	* lsh: lsh added. This requires packets for zlib, libgmp, 
	liboop and nettle which have been installed. 

2002-09-30  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: works now for ARM. The route applet has a bug and 
	cannot be compiled, but this is an upstream problem. 

	* toolchain: first release with a working toolchain! gcc stage
	two is now able to compile kernel 2.4.18, busybox 0.61-pre-ptx1
	and glibc-2.2.5.

	* general: 0.3.4 finalized.  

2002-09-26  Robert Schwebel <r.schwebel@pengutronix.de>

	* busybox: added a makefile for busybox, currently only for an 
	unstable version from CVS. This will be changed to stable once
	Erik Andersen has made a release. 

	* x86 port: backported makefiles to support compilation for a x86 based
	target system. 

	* toolchain: the cross toolchain does still have major bugs 
	concerning the compiled in paths. 


2002-09-20  Robert Schwebel <r.schwebel@pengutronix.de>

	* general: several bugs fixed which prevented the system from being 
	compiled without having a toolchain right from the beginning. 

	* general: 0.3.2 finalized. This is the first version which has all
	the infrastructure for making a complete cross toolchain for ARM.