-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
3358 lines (2466 loc) · 113 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
2008-03-07 Marc Kleine-Budde <[email protected]
* commit 10000 :)
2008-04-23 Juergen Beisert <[email protected]>
* xerces.make: Switch to new download location
* nmap.make: Switch to new download location
2008-04-07 Robert Schwebel <[email protected]>
* debian packaging: updated; patch by Brandon Fosdick
2008-03-31 Robert Schwebel <[email protected]>
* xawtv: added
* canutils: update default version number
* schedutils: adapt menu to usual style
* host-pelts: update version to 1.0.12
2008-02-06 Robert Schwebel <[email protected]>
* sqlite: update to 3.5.6
* sqlite: fix install stage to follow new scheme
2008-01-08 Robert Schwebel <[email protected]>
* ptxdist: streamline installation and fix readlink dependency
on gnu readline.
* coreutils: add readlink
* ppp: fixed p0 patch level; patch by Gary Thomas.
* libpopt: fixed URL
2008-01-07 Robert Schwebel <[email protected]>
* util-linux-ng: added
* e2fsprogs: changed version from 1.40.2 to 1.40.4
2008-01-06 Robert Schwebel <[email protected]>
* sjinn: added; patch by Tom St
2008-01-01 Robert Schwebel <[email protected]>
* nfsutils: removed obsolete patches for nfsutils 1.0.1; we
have 1.0.8 in the meantime.
* ppp: update version to 2.4.4
* ppp: make ppp cross compilable
* rsync3: added rsync 3.0.0pre7 in order to test
the new and probably less memory consuming algorithms
* xkbcomp: fixed dependency to xorg-lib-xkbfile.
2007-12-31 Robert Schwebel <[email protected]>
* hackbench: added; patch by Michael Olbrich
* calibrator: added; patch by Michael Olbrich
* libxml2: set LIBXML2_ENV needed for a correct generation when the
cross toolchain prefix and the target name differs. strip the lib on the
target file system. Patch by Guillaume Gourat.
* busybox: If busybox feature "BB_CONFIG_FEATURE_SUID" is
set, the busybox binary must be installed on the target
with the SUID bit set. There are several features which
will turn on the SUID feature implicitly including: login,
passwd, su, vlock, crond, crontab, ipcs, ipcrm.
Patch by Randall Loomis.
* xauth: added; patch by Claudio Leonel
* haserl: added; patch by Tom St
2007-12-29 Robert Schwebel <[email protected]>
* net-snmp: refactored menu entries to use positive logic
* fbgrab: added; patch by Roland Hostettler
* net-snmp: added; patch by Randall Loomis
2007-12-28 Robert Schwebel <[email protected]>
* sudo: fixed URL
* mad: fixed URL, moved packet to pengutronix server because
upstream version has disappeared
* pekwm: fixed URL (dito)
* sqlite: version bump, old version was not available any more
* unionfs: fixed URL
* pdksh: fixed URL
* flash: fixed URL
2007-12-27 Robert Schwebel <[email protected]>
* lighttpd: adds lighttpd to ptxdist. Lighttpd is another
popular web server for embedded targets. Patch by Daniel
Schnell. The configuration is dependant on fast cgi, pcre and
openssl.
* fcgi: integrates fastcgi 2.4.0 to be used e.g. by lighttpd.
It doesn't contain any patches because it configures quite well
under linux. Patch by Daniel Schnell.
2007-12-13 Robert Schwebel <[email protected]>
* pekwm: fix URL; patch by Marco Cavallini, inspired by
BET-frogger[DO].
2007-12-09 Robert Schwebel <[email protected]>
* .in: remove leading whitespace; found by Marco Cavallini.
2007-10-27 Robert Schwebel <[email protected]>
* sudo: update to version 1.6.9p2. It patches some compile
breakage, when trying to cross compile. It also allows to
install a user sudoers file from projectroot.
Change mail and pam options to positive logic.
Signed-off-by: Carsten Schlote <[email protected]>
* netkit-ftp: Removed libc dependency from netkit-ftp.
Removed ipkg dependency to libc from netkit-ftp packet. As
we use glibc this caused the packet to refuse installation.
Signed-off-by: Carsten Schlote <[email protected]>
* libgmp: remove gmp3 and gmp4, added libgmp instead. Compiles
at least for ARM.
Signed-off-by: Carsten Schlote <[email protected]>
2007-10-19 Robert Schwebel <[email protected]>
* Rules.make: allow PKG_PKGDIR related install_copy calls.
2007-10-19 Michael Olbrich <[email protected]>
* xorg: Update to Xorg 7.3. Add new dependencies libxcb and
pixman. Update all packages to the corresponding versions.
2007-10-18 Robert Schwebel <[email protected]>
* xorg-app-mkfontscale: fix dependency to freetype
2007-10-08 Robert Schwebel <[email protected]>
* sed: added; patch by Marco Cavallini.
* libcgicc: fix broken library. Install the headers into
the sysroot directory, fix targetinstall stage. Patch by
Carsten Schlote.
* joe: update to version 3.5 and allow to install the syntax
highlighting files as well. Patch by Carsten Schlote.
* iptables: update the iptables package to 1.3.8 and updates
iptables.in and iptables.make to match this version. Updated
menu structure to reflect the current iptables modules.
Added ipt_DF module as patch - it's some ugly hack to remove
the DF bit from connections. It's sometimes required for
broken TCP stacks behind routers, which ignore ICMP no
fragmentation replies and insist on sending large pakets with
DF flag set. Patch by Carsten Schlote.
2007-10-01 Robert Schwebel <[email protected]>
* gawk: updated and targetinstall completed. Simply completes
the gawk configuration and installation. Package now usable.
Patch by Carsten Schlote.
2007-10-01 Robert Schwebel <[email protected]>
* sudo: This updates sudo to 1.6.8p12. It patches some compile
breakage, when trying to cross compile. It also allows to
install a user sudoers file from projectroot. Patch by Carsten
Schlote.
2007-09-26 Robert Schwebel <[email protected]>
* ntp: update NTP package to version 4.2.4p3. Adds options for
rc.d links for the server and ntpdc plus configurations. Some
missing /var directories for statistics files have also been
added. Patch by Carsten Schlote.
2007-09-21 Bjoern Buerger <[email protected]>
* less: added
2007-09-20 Robert Schwebel <[email protected]>
* libcgi: added; patch by Guillaume Gourat.
2007-07-26 Robert Schwebel <[email protected]>
* liboil: added; patch by Guillaume Gourat.
2007-05-05 Robert Schwebel <[email protected]>
* trunk: backports from 1.0.0-trunk
2007-05-05 Robert Schwebel <[email protected]>
* release: released 1.0.0
2007-05-04 Robert Schwebel <[email protected]>
* figlet: fix output
* db41: cleanup; patch by Randall Loomis
* db41: fixed build issues with the patch above
* sysfsutils: fixed install path for systool; patch by Jari
Takkala
* alsa-lib: resmgr support is broken, because it needs libresmgr
* Rules.make: remove internal quotes in pkg-config path; patch
by Jari Takkala
2007-05-04 Marc Kleine-Budde <[email protected]>
* apply_patch_series.sh: removed debug
* apply_patch_series.sh: be a bit more sane, don't fail on
existing patches subdirs or series files
* rules/pre/Rules.make: set PKG_CONFIG_PATH to nix, in HOST ENV
prevent host stuff leak into our own stuff
2007-05-04 Juergen Beisert <[email protected]>
* alsa-utils: consider new alsa-lib menu entries
* alsa-lib: adding more menu entries and help for more specific
configuration
* utelnetd.make: Using correct packet name for user's startup script
* u-boot.in: some help added
2007-05-04 Sascha Hauer <[email protected]>
* kernel: do not use kernel-patches-target and
kernel-patches-native anymore. The kernel patches are now placed
under patches/linux-version like for every other package
* ptxdist: check a ptxdist version against a configfile version.
- The ptxdist major version has to be equal to the configfile major version
- The ptxdist minor version has to be equal to the configfile minor version
- The ptxdist micro version has to greater than or equal to the configfile
micro version
- If the configfile has no minor or micro version stop here and assume
everything is ok (this means 'can build with 0.10.x or 0.x').
- If the ptxdist minor or micro version is "svn" then no further checks are
done. You know what you are doing when you use svn, don't you?
* ptxdist: use quilt to apply patch stacks if we have it
* setterm: add setterm installation option
2007-04-26 Robert Schwebel <[email protected]>
* overall: removed some obsolete files
2007-04-26 Sascha Hauer <[email protected]>
* u-boot: add some help text
2007-04-26 Robert Schwebel <[email protected]>
* iptables: typo in lib name
* busybox: revert BB_ vs. BB_CONFIG_ change which comes due to
the fact that busybox uses a new kconfig. This patch makes it
possible to migrate old configurations in a sane time again ...
2007-04-20 Sascha Hauer <[email protected]>
* gdbserver: fixed get stage. We need to depend on gdb.get here
too, because otherwise, when gdbserver is selected but not gdb,
ptxdist will try to do a gdb.extract without doing gdb.get
beforehand
2007-04-23 Robert Schwebel <[email protected]>
* sqlite: version bump
2007-04-23 Bjoern Buerger <[email protected]>
* projects directory is not mandatory anymore
2007-04-20 Sascha Hauer <[email protected]>
* busybox: add patch for stty
2007-04-18 Robert Schwebel <[email protected]>
* mgetty: fixed URL; patch by Juergen Kilb
* pcre: fixed URL; patch by Juergen Kilb
* rsync: fixed URL; patch by Juergen Kilb
2007-04-18 Ladislav Michl <[email protected]>
* zip: added
* busybox: version bump to 1.4.2
2007-04-16 Sascha Hauer <[email protected]>
* tslib: version bump to 0.0.3
* udev: add basic rules
* libusb: added
* usbutils: added
2007-04-16 Bjoern Buerger <[email protected]>
* ptxdist: changed default theme of ptxdist hotkeys are now
highlighted _bold_ black / _bold_ white
* ptxdist: changed menu title
2007-04-12 Luotao Fu <[email protected]>
* fuse: added
* iptables: version update, needed for kernel later than 2.6.19
2007-04-11 Juergen Beisert <[email protected]>
* samba: added issues to TODO file
2007-04-10 Juergen Beisert <[email protected]>
* u-boot: do not build u-boot as default it makes no sense for
x86 targets
2007-04-10 Bjoern Buerger <[email protected]>
* chrony: several fixes and additions
2007-04-05 Sascha Hauer <[email protected]>
* u-boot: addded u-boot support
2007-04-05 Ladislav Michl <[email protected]>
* glib: Fix glib targetinstall. Patch by Manfred Gruber.
* init: Copy user defined init script from correct location.
Patch by Jari Takkala.
2007-04-05 Marc Kleine-Budde <[email protected]>
* freetype-2.1.10:
delete unused patches
* procps-2.0.16:
delete unused patches
* xorg-server-X11R7.0-1.0.1:
delete ununsed patches
* libX11-X11R7.0-1.0.0, libXt-X11R7.0-1.0.0:
delete unused patches
* crosstool-0.32, crosstool-0.38:
delete ununsed patches
2007-04-04 Ladislav Michl <[email protected]>
* openssh: Fix openssh startup script installation. Patch by
Manfred Gruber <[email protected]>
2007-03-27 Robert Schwebel <[email protected]>
* glib: updated to 2.12.9
* sqlite: Version 3.2.8 is no longer at the sqlite.org URL so
downloading was broken. Here's a small patch to support building
the latest release... Patch by Randall Loomis.
2007-03-19 Robert Schwebel <[email protected]>
* php4: removed
* php5: compiles in minimal config now
* xerces: fix sysroot problem
* fbtest: add patch to use -O2 instead of -O3; works around a
compiler issue
* xli: added
2007-03-16 Bjoern Buerger <[email protected]>
* xterm: source vanished. upgraded to 224
2007-03-13 Bjoern Buerger <[email protected]>
* apache2: minor documentation fix
* chrony: added chrony default config, tools, menu entries
* rootfs: reordered entries in accordance to rc.d default start
order
* rootfs: removed duplicate dependency
2007-03-13 Juergen Beisert <[email protected]>
* TODO: ptxdist should return valid return value
2007-03-11 Robert Schwebel <[email protected]>
* TODO: more issues
* init: this may avoid the 'cp -a /dev/{console,null}' hackery
with root permissions
2007-03-11 Juergen Beisert <[email protected]>
* busybox: adding some notes about failing install stages
- do not leave symbol BB_PREFIX empty
- could be accidentally happen when migrating from older ptxdist releases
(and reconfigure the whole busybox again)
- gives curious error messages then
2007-03-10 Robert Schwebel <[email protected]>
* gettext: use generic macro instead of handmade stuff
* qt-embedded: added patches for casts which lose precision
2007-03-09 Robert Schwebel <[email protected]>
* COMPILE-TEST: removed because it is obsolete
* SPECIFICATION: removed (also obsolete)
* TOOLCHAINS: removed (also obsolete)
* pending_patches: removed
* configure: add check for g++ (it is needed...)
2007-03-09 Ladislav Michl <[email protected]>
* busybox: Upgrade to busybox-1.4.1
* udev: upgrade to udev-106
* utelnet: Install startup link only if startup script is
installed.
* apache2: fix module instalation.
2007-03-09 Marc Kleine-Budde <[email protected]>
* pkg-config-wrapper: fixed
2007-03-09 Juergen Beisert <[email protected]>
* TODO: adding generic project path issue
* TODO: PKG_CONFIG_PATH leaks into PTXdist
2007-03-08 Ladislav Michl <[email protected]>
* openssh: remove duplicate startup link instalation.
2007-03-08 Juergen Beisert <[email protected]>
* mc.in: Using correct default symbol for MMI preference
2007-03-07 Juergen Beisert <[email protected]>
* zlib.make: Issue solved
2007-03-07 Marc Kleine-Budde <[email protected]>
* zlib.make:
fixed zlibs version numbers (to 1.2.3 again)
2007-03-07 Juergen Beisert <[email protected]>
* fakeroot: issue solved
* TODO: new issues added about broken or useless features
2007-03-06 Marc Kleine-Budde <[email protected]>
* fakeroot: update to 1.5.10 for fixing the glibc-2.5 issues
with *at syscalls
* fakeroot: added patches for glibc-2.5
2007-03-02 Marc Kleine-Budde <[email protected]>
* bin/ptxdist:
check_dirs_prefix():
removed superflous {} when creating dirs
thanks to lowlander for spotting this
2007-03-01 Sascha Hauer <[email protected]>
* powerpc: add device tree compiler and oftree support
2007-02-28 Juergen Beisert <[email protected]>
* rootfs.make: correct path for user defined rcS script
* rootfs.make/rootfs_init_d_files.in: Install rcS script from
selectable source
* rcS: conflict removed
- no more lo device initialisation in rcS
- lo initialisation is done in the network script only
2007-02-28 Marc Kleine-Budde <[email protected]>
* module-init-tools.make: don't build documentation
* TODO: added remark for jffs2 images
2007-02-27 Juergen Beisert <[email protected]>
* thttpd: adding open issue to the TODO list - fixing error
message, when the service is not running and should be stopped
* TODO: switching images should not rebuild the whole project
2007-02-26 Juergen Beisert <[email protected]>
* TODO: hd images via ipkg
2007-02-20 Luotao Fu <[email protected]>
* initng: fixed depencencies
* nfsutils: fixed make install failure while not target
installing statd
2007-02-15 Luotao Fu <[email protected]>
* host-pelts: version bump
2007-02-12 Marc Kleine-Budde <[email protected]>
* busybox.make: added parallelmflags
* host-glib.make: regenerated makefile
* alsa-lib.make, glib.make: removed --libdir hack
* pre/Rules.make: fixup .la files before "make install"
2007-02-11 Marc Kleine-Budde <[email protected]>
* rules/ncurses.make: grmpf: fixed targetinstall stage
* rules/ncurses.make: version bump -> 5.6 PARALLELMFLAGS added,
cause they are working now
2007-02-09 Luotao Fu <[email protected]>
* xorg-lib-X11: added missing generic xlocale file
* xorg-lib-Xfont: fixed recursive dependencies
* fonts: fonts installation now depends on xlib, so that it's no
long chosen as default in empty projects
* general: several dependency enhancements
* alsa-lib: fixed libdir to run linker on 64bit host
2007-02-09 Sascha Hauer <[email protected]>
* ncurses: remove PARALLELMFLAGS, doesn't build on 8 CPUs
2007-02-08 Luotao Fu <[email protected]>
* configure: fixed malformed regexp in configure.ac
2007-02-07 Ladislav Michl <[email protected]>
* patches: remove obsolete patches for linux-2.4.21,
modutils-2.4.27 and uClibc-0.9.26.
2007-02-07 Luotao Fu <[email protected]>
* glib: fixed targetoveriding and removed unnecessary get
* TODO: updates
* configure: added checking for localedef on host machine with
belocs locales bin package
2007-02-06 Luotao Fu <[email protected]>
* alsa-lib: linking explicitly from sysroot
* xorg-app-xinit: fixed libdir bug
* glibc: fixed gconv bug
2007-02-05 Juergen Beisert <[email protected]>
* kernel: extract stage seems to touch kernel configuration
2007-02-02 Luotao Fu <[email protected]>
* font-alias: patch for variable fonts problems
* glib: define libdir to prevent linking from /usr/lib
* glib: added glib hosttool to enable crosscompiling on machines
without glib-genmarshal
2007-02-01 Juergen Beisert <[email protected]>
* openntpd: configure file added (on demand)
2007-01-31 Juergen Beisert <[email protected]>
* to be removed: documentation
2007-01-30 Juergen Beisert <[email protected]>
* memedit: Requires readline with ncurses
* readline: adding termcap or ncurses to be used - configure
does not do the right thing yet. If termcap and ncurses is found
it selects termcap even if --with-curses was given
* TODO: added more future work
* Toplevel.make: fix path and wrong tool to create a uboot multi
image; patch by Steven Scholz modified and applied
* cyclictest: dependency to librt added; patch from Steven
Scholz
* ipkg: Configure file makes no sense without the ipkg binary;
dependency fixed
* ipkg config: dependencies fixed; patch by Steven Scholz
2007-01-29 Juergen Beisert <[email protected]>
* TODO: add notes for next release
2007-01-28 Robert Schwebel <[email protected]>
* trunk: backports from 0.10.6-branch
2007-01-28 Robert Schwebel <[email protected]>
* release: released 0.10.6
2007-01-28 Robert Schwebel <[email protected]>
* php5: fix URL; marked broken (doens't find libxml2)
* bridgeutils: marked broken
* scripts: added changelog script
* toplevel: updated ChangeLog
* credits: ladis somehow got lost, sorry about that
* ptxdist: version bump
* ptxdist: open branch for ptxdist-0.10.6 release
2007-01-26 Robert Schwebel <[email protected]>
* ptxdist: version bump
* ptxdist: open branch for ptxdist-0.10.6 release
* host-modutils: removed, we don't support 2.4 any more (at
least not officially)
* host-util-linux: install stage forgot to touch target
* ltrace: marked broken, doesn't compile
* kaffe: marked broken - doesn't compile
* libxml2: iconv support is broken
* ntp: marked broken (doesn't compile)
* ntp: fixed URL
2007-01-26 Juergen Beisert <[email protected]>
* grub: use standard menu size
2007-01-26 Robert Schwebel <[email protected]>
* oprofile: marked broken (doesn't compile)
2007-01-26 Luotao Fu <[email protected]>
* samba: fixed lock directory (thx to mkl)
2007-01-26 Marc Kleine-Budde <[email protected]>
* ncurses.make: use SYSROOT instead of $(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)
2007-01-26 Robert Schwebel <[email protected]>
* host-slirp: mark broken; it does not compile
* mico: does not compile, tries to call "ldconfig", which is not
available if you are not root. So we mark it to be broken for
now.
* checkinstall:
remove checkinstall mechanism; it does not work,
the concept is not even finished, so we kick it out for now.
2007-01-26 Marc Kleine-Budde <[email protected]>
* scripts/libptxdist.sh:
unbreak ptxd_get_ptxconf
2007-01-26 Robert Schwebel <[email protected]>
* openafs: is broken, so mark it accordingly
2007-01-26 Juergen Beisert <[email protected]>
* termcap: adding help and install termcap datafile as default
- termcap is a static library only, but requires the termcap
datafile at runtime
* mysql: fix dependency to termcap
- mysql can use ncurses or termcap
- adding choice to the user
2007-01-26 Robert Schwebel <[email protected]>
* libc.in: use standard menu size
* libiconv: use standard menu size
* locales.in: use standard menu size
* kernel.in: use standard menu size
* gcclibs: use standard menu size
2007-01-26 Marc Kleine-Budde <[email protected]>
* scripts/install_copy_toolchain.sh, rules/pre/Rules.make:
This patch updates install_copy_toolchain_dl to current copy
toolchain mechanism. As a side effect
install_copy_toolchain_dl works again for Ladis uClibc based
toolchain. Thanks to Ladis for this patch
2007-01-26 Robert Schwebel <[email protected]>
* live555: mark as broken
2007-01-26 Luotao Fu <[email protected]>
* samba: bugfix
* rootfs_rc_d_links.in: added samba rc link
* samba: default configuration file and startup script for samba
2007-01-26 Juergen Beisert <[email protected]>
* termcap/ncurses: exclude termcap when ncurses is enabled
* termcap.in: adding help
2007-01-26 Marc Kleine-Budde <[email protected]>
* ptxdist: only remove prefix* if it's in the workspace
2007-01-26 Robert Schwebel <[email protected]>
* host-cramfs: add dependency to zlib
* cramfs: make it a hosttool (it was one, but broken)
2007-01-26 Sascha Hauer <[email protected]>
* ptxdist: add test help
2007-01-26 Robert Schwebel <[email protected]>
* rules/host-mkelfImage.in, rules/host-mkelfImage.make:
fixed building
* series:
generic/ldflags-cppflags-fix.diff, generic/series:
add patch to provide external CPP and LDFLAGS
2007-01-26 Sascha Hauer <[email protected]>
* libptxdist.sh: add ptxd_human_to_number function
* fbtest.in: fixed
2007-01-25 Robert Schwebel <[email protected]>
* Rules.make: * Rules.make: documentation fix
2007-01-25 Juergen Beisert <[email protected]>
* TODO: some more entries are solved
* rootfs:
udhcpc script now gets installed as selected in the menu
- installs the script from selectable source
- some notes and help added
* syslogng: patch by Manfred Gruber added
- using correct source path for user defined config file
2007-01-25 Sascha Hauer <[email protected]>
* rootfs_configfiles.in: make PS1, PS2 and PS4 hardwired. We had
too much hassle with eight backslashes in the config files
2007-01-24 Juergen Beisert <[email protected]>
* TODO: adding note about uRamdisk
* ncurses: handling of non wide char and wide char libs changed
- non wide char: Nothing changed
- wide char: Wide char libs are generated only and all other
programs that request for non wide char are forced to link
against the wide char libs
- for external built programs a non wide named link to the
wide char libs are generated on demand
* nano: finds the correct ncurses libs with the new ncursrs mechanism
* hexedit: remove additional LDFLAGS, it fails with the new ncurses mechanism
* pureftpd: Support inetd start
* mc: using ncurses or slang on demand
* mc: using ncurses or slang on demand
* ncurses.in: adding menudocu to ncurses
2007-01-24 Robert Schwebel <[email protected]>
* TODO: updates
* pure-ftpd: fix autotool rerun
* libxslt: avoid autotools rerun
* util-linux: avoid autotool rebuilding
* extract stage: fix relative file:// urls
2007-01-24 Juergen Beisert <[email protected]>
* AppleWM.make: fixing package name because ipkg reject the
previous one
* TODO: adding uRamdisk note
2007-01-24 Robert Schwebel <[email protected]>
* Rules.make: extract stage: remove duplicate file URL test
* Rules.make: extract stage: check for project-local packet directory
_before_ we test if PACKET is empty; local directories don't
have FOOBAR_SOURCE defined, because it doesn't make sense.
* dgen: add sanity check for workspace
2007-01-23 Luotao Fu <[email protected]>
* startx: now loads xinitrc from etc/X11/xinit *cross
compiling with cross cpp
2007-01-21 Juergen Beisert <[email protected]>
* TODO: local sources - file://- are still doing strange things
2007-01-19 Robert Schwebel <[email protected]>
* ncurses: fix libraries targetinstall for wide char case
* chrony.in: removed trailing whitespace
* xorg-lib-oldX: change paket name to be correct according to
the ipkg naming rules.
* Rules.make: bail out if ipkg packetizing breaks
* mknbi: removed image options
* host-mknbi: doesn't work anyway, thrown away. If somebody is
interested, please submit a working patch.
* ptxdist: improve error message for non-existing ptxconfig files
* libptxdist: source ptxconfig file only if it exists
* ptxdist: test if ptxdist projects do really exist before
doing something with them.
2007-01-17 Ladislav Michl <>
* uclibc.make: updates
2007-01-16 Juergen Beisert <[email protected]>
* TODO: update
2007-01-15 lmi
* module-init-tools-3.2.1: Remove
patches for obsolete module-init-tools version.
2007-01-15 Robert Schwebel <[email protected]>
* TODO: updates
2007-01-12 Juergen Beisert <[email protected]>
* sdl: typo fixed
* xorg-xdm: adding xinerama, when the server supports it
2007-01-12 Marc Kleine-Budde <[email protected]>
* xorg-dirs.make: use IPV6 and ipv6 to disable
* xorg-font.in: select xorg-font menu per default
2007-01-12 Juergen Beisert <[email protected]>
* TODO: updates
2007-01-12 Luotao Fu <[email protected]>
* xorg-server.in: fixed xorg dependency to libdl
2007-01-12 Robert Schwebel <[email protected]>
* TODO: updates
* host-umkimage: needs host-zlib; let it find the right include
paths.
* host-umkimage: added zlib dependency
2007-01-12 Juergen Beisert <[email protected]>
* xorg-options.in: Extending help
* TODO: updates
2007-01-12 Luotao Fu <[email protected]>
* xorg-options.in: added dependencies to prevent xorg options
selected by default y though no x present at all
2007-01-12 Juergen Beisert <[email protected]>
* rootfs.make: typo fixed that confuses the bash
* Rules.make: adding a note about CROSS_PATH
2007-01-12 Robert Schwebel <[email protected]>
* TODO: updates
* fontconfig.in: removed trailing whitespace
2007-01-11 Juergen Beisert <[email protected]>
* TODO: updates
* ptxdist: expanding PATH to find local host side tools
2007-01-11 Robert Schwebel <[email protected]>
* php5: add more --without- workarounds
* samba: doesn't work on the target yet, so mark as broken
* php5: mark broken config options as broken
* samba: added patches
* mysql: added patches
* TODO: updates
2007-01-11 Marc Kleine-Budde <[email protected]>
* libptxdist.sh: scripts/libptxdist.sh, bin/ptxdist: put
PTXCONF_HOST_PREFIX in path
2007-01-11 Juergen Beisert <[email protected]>
* TODO: updates
* nano.make: enabling wide char support (also utf8) now depends on
ncurses switches, due to autodetection does not work correctly
- if ncurses is configured for non-wide characters, also nano
is configured for non-utf8 support, otherwise it fails at runtime
* ncurses: Correct wide char handling
- supporting wide chars (also utf8) is now a switch and will be
forwarded to configure
- correct installing the generated libraries for wide and non
wide char support, with additional links for backward compatibility
* TODO: updates
* passwd and group:
Define new users and groups to be used by some applications at
runtime
- passwd:
+ adding user 'messagebus' for dbus with uid of 103
+ adding user 'nobody' with uid 65534
- group:
+ adding group 'messagebus' with gid 104
+ adding group 'nogroup' with gid 65534
2007-01-11 Marc Kleine-Budde <[email protected]>
* xorg-lib-Xfont.make: use XORG_OPTIONS_TRANS
* xorg-app-xdm.make: use XORG_OPTIONS_TRANS
* xorg-options.in: trans-options: don't depend on ICE
* xorg-server.make: use XORG_OPTIONS_TRANS
* xorg-lib-Xfont.in: enable builtin fonts per default
* fontconfig.in: install configs per default
* xorg-dirs.make:
introduced centralised generation of XORG_OPTIONS_TRANS
* xorg-lib-SM.make,
xorg-lib-Xmu.make, xorg-lib-X11.make, xorg-app-xhost.make,
xorg-lib-ICE.make:
used centralized XORG_OPTIONS_TRANS option
* php5.make: removed commented out URL
* xorg-lib-Xau.make: added PARALLELMFLAGS
* xorg-lib-Xfontcache.make: add PARALLELMFLAGS
* xorg-lib-*.make: added PRALLELMFLAGS
* procps.make: do not install procps
* zlib.make: fixed install_{copy,link} calls (tnx to lfu)
2007-01-11 Robert Schwebel <[email protected]>
* libdbus-c++: added patches
* boost: added patches
2007-01-11 Marc Kleine-Budde <[email protected]>
* xorg-font, xorg-lib-Xfont.in:
select Xfont support depending on installed fonts
* libpng.make: fix typo
2007-01-11 Juergen Beisert <[email protected]>
* libpng: typo fixed; now it installs its config file in the correct path
* libxslt: typo fixed; now it installs its config file into the correct path
* libxml2: typo fixed - does now install its config file in the correct path
2007-01-11 Marc Kleine-Budde <[email protected]>
* zlib.make: fixed installed libraries
2007-01-11 Juergen Beisert <[email protected]>
* glibc.in: adding some useful help
2007-01-11 Marc Kleine-Budde <[email protected]>
* configure.ac: fixed localedef version check
2007-01-10 lmi
* uclibc.make: uClibc is shipped with
toolchain, so no need to source its config.
2007-01-10 Marc Kleine-Budde <[email protected]>
* configure.ac:
accept more glibc versions
2007-01-10 lmi
* php5.make: No need to install php-config and phpize on host
now...
2007-01-10 Luotao Fu <[email protected]>
* make_locale.sh: cleaned debugging and obsolete stuffs
* install_copy_toolchain.sh: cleared debugging stuffs
* configure.ac: added recent version number to localedef version check
2007-01-09 Luotao Fu <[email protected]>
* Kconfig: cosmetic change
* Kconfig: core menu hint text
* locales.in: added default locale language
* xorg-lib-X11.in: added dependency of xlocale to glibc locale
2007-01-09 Juergen Beisert <[email protected]>
* syslog: startscript - adding stop argument
- the script now als can stop this service
- stopping is required in order to unmount /var/log when system
stops or is going to reboot
2007-01-09 Luotao Fu <[email protected]>
* configure.ac: typo fix
* make_locale.sh: added locale generatio script
* configure.ac: added localedef as requirement for ptxdist
* install_copy_toolchain.sh: added locale configuration for