summaryrefslogtreecommitdiffstats
path: root/bin/ptxdist
blob: 426dc3f86883822d6000569eb61caf166155a7fc (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
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
#!/bin/bash

export LANG=C
export LC_ALL=POSIX
export LC_CTYPE=POSIX

PROMPT="ptxdist: "
DEBUG=

#
# board setup
#
boardsetup() {
	local tmpdir

	echo
	echo "${PROMPT}boardsetup..."

	if [ ! -e "${PTXDIST_WORKSPACE}/boardsetup/Kconfig" ]; then
		echo "${PROMPT}error: boardsetup/boardsetup or boardsetup/Kconfig missing"
		echo
		exit 1
	fi

	tmpdir="$(mktemp -d ${PTXDIST_TEMPDIR}/boardsetup.XXXXXX)"
	pushd $tmpdir > /dev/null

	# prepare everything to make kconfig see it's original environment
	if [ -e "${PTXDIST_WORKSPACE}/boardsetup/boardsetup" ]; then
	    cp "${PTXDIST_WORKSPACE}/boardsetup/boardsetup" .config
	fi

	# store boardsetup
	"${PTXDIST_TOPDIR}/scripts/kconfig/mconf" "${PTXDIST_WORKSPACE}/boardsetup/Kconfig"
	echo "${PROMPT}saving ${PTXDIST_WORKSPACE}/boardsetup/boardsetup"
	cp .config "${PTXDIST_WORKSPACE}/boardsetup/boardsetup"

	popd > /dev/null
	echo "${PROMPT}cleanup..."
	rm -fr $tmpdir
}

# 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?
#
check_version() {
	ptxdist="$1"
	config="$2"

	ptxdist_major=$(echo $ptxdist | awk -F. '{print $1}')
	config_major=$(echo $config | awk -F. '{print $1}')
	[ "$ptxdist_major" != "$config_major" ] && return 1

	ptxdist_minor=$(echo $ptxdist | awk -F. '{print $2}')
	config_minor=$(echo $config | awk -F. '{print $2}')
	[ -z "$config_minor" ] && return 0
	[ "$ptxdist_minor" = "svn" ] && return 0
	[ "$ptxdist_minor" != "$config_minor" ] && return 1

	ptxdist_micro=$(echo $ptxdist | awk -F. '{print $3}')
	config_micro=$(echo $config | awk -F. '{print $3}')
	[ -z "$config_micro" ] && return 0
	[ "$ptxdist_micro" = "svn" ] && return 0
	[ "$ptxdist_micro" -lt "$config_micro" ] && return 1

	return 0
}

#
# Check for existence of a ptxconfig file
# check_ptxconfig()
#
check_ptxconfig() {
	local configfile_version

	if [ ! -e "${PTXCONFIG}" ]; then
		echo
		echo "${PROMPT}error: ptxconfig file is missing"
		echo "${PROMPT}error: please 'ptxdist clone' an existing project"
		echo
		exit 1
	fi

	if [ ! -e "${PLATFORMCONFIG}" ]; then
		echo
		echo "${PROMPT}error: '${PLATFORMCONFIG#${PTXDIST_WORKSPACE}/}' is missing"
		echo
		exit 1
	fi

	configfile_version="$(ptxd_get_ptxconf PTXCONF_CONFIGFILE_VERSION)"

	check_version "${FULLVERSION}" "${configfile_version}"
	if [ "$?" != 0 ]; then
		echo
		echo "${PROMPT}error: The configfile version and ptxdist version do not match:"
		echo
		echo "	configfile version: ${configfile_version}"
		echo "	ptxdist version:    ${FULLVERSION}"
		echo
		exit 1
	fi
}

check_kernelconfig() {
	local kernelconfig

	kernelconfig="$(ptxd_get_ptxconf PTXCONF_KERNEL_CONFIG)"
	if [ ! -e "$kernelconfig" ]; then
		echo
		echo "${PROMPT}error: You don't have a $kernelconfig file"
		echo
		exit 1
	fi
}

#
# abort if ptxdist is run as root
#
check_uid() {
	if [ ${UID} -eq 0 ]; then
		echo
		echo "${PROMPT}error: refusing to run PTXdist as root"
		echo
		exit 1
	fi
}

#
#
#
check_path() {
	case "${PATH}" in
		.:*)
			echo
			echo "${PROMPT}error: \".\" in your \$PATH detected, please remove it!"
			echo
			exit 1
			;;
		*)
			;;
	esac
}


#
# Check for defined compiler
# This only should be done when we build userland (chicken egg problem)
#
check_compiler() {
	local build_toolchain compiler toolchain_ptxconfig
	local vendor_should vendor_is compiler_should compiler_is

	build_toolchain="$(ptxd_get_ptxconf PTXCONF_BUILD_TOOLCHAIN)"

	[ -n "$build_toolchain" ] && return

	#
	# Three things should be checked
	# 1) Correct compiler name
	# 2) Correct vendor if the vendor string is given
	# 3) Correct compiler version if a specific compiler version is given
	#

	compiler="$(ptxd_get_ptxconf PTXCONF_COMPILER_PREFIX)gcc"
	vendor_should="$(ptxd_get_ptxconf PTXCONF_CROSSCHAIN_VENDOR)"

	if [ -n "${vendor_should}" ]; then
		# yea! A toolchain vendor was specified in the ptxconfig file.
		# So we check for a 'ptxconfig' file in the toolchain directory
		# and test the PTXCONF_PROJECT string therein.

		if [ ! -d "${PTXDIST_TOOLCHAIN}" ]; then
			echo
			echo "${PROMPT}error: specify .toolchain with 'ptxdist toolchain [<path>]'"
			echo "${PROMPT}error: or leave PTXCONF_CROSSCHAIN_VENDOR empty to disable toolchain check"
			echo
			exit 1
		fi

		vendor_def="$(readlink -f ${PTXDIST_TOOLCHAIN}/ptxconfig)"
		if [ -z "${vendor_def}" -o \! -e "${vendor_def}" ]; then
			echo
			echo "${PROMPT}error: toolchain doesn't point to an OSELAS.Toolchain"
			echo "${PROMPT}error: set PTXCONF_CROSSCHAIN_VENDOR to disable toolchain version check"
			echo
			exit 1
		else
			# both vendor strings are present. Check them
			vendor_is="$(. ${vendor_def} && echo ${PTXCONF_PROJECT})"
			if [ "$vendor_is" != "$vendor_should" ]; then
				echo
				echo "${PROMPT}error: wrong toolchain vendor: Cannot continue! Vendor is <${vendor_is}>,"
				echo "${PROMPT}error: specified: ${vendor_should}"
				echo "${PROMPT}error: found:     ${vendor_is}"
				echo
				exit 1
			fi
		fi
	fi

	compiler_should="$(ptxd_get_ptxconf PTXCONF_CROSSCHAIN_CHECK)"
	compiler_is="$(${compiler} -dumpversion 2> /dev/null)"

	if [ -z "${compiler_is}" ]; then
		echo
		echo "${PROMPT}error: Compiler '${compiler}' not found. Check PATH or"
		echo "${PROMPT}error: use 'ptxdist toolchain [</path/to/toolchain>]'."
		echo
		exit 1
	fi
	if [ "${compiler_is}" != "${compiler_should}" ]; then
		echo
		echo "${PROMPT}error: Compiler version ${compiler_should} expected,"
		echo "${PROMPT}error: but ${compiler_is} found."
		echo
		exit 1
	fi
}


#
# checks if the dependencies are allright (make for the poor)
#
check_deps() {
	"${DGENDIR}/dgen.sh"
}


check_dirs_prefix() {
	local prefix testfile

	prefix="${1}"

	if [ -z "${prefix}" ]; then
		return
	fi

	if [ ! -d "${prefix}" ]; then
		mkdir -p "${prefix}" 2> /dev/null
		if [ $? -ne 0 ]; then
			echo
			echo "error: \"${ptxconf_prefix}\""
			echo "       does not exist and cannot be created!"
			echo "       Please create that dir with write permissions for you."
			echo
			read -t 5 -p "press enter to let sudo do that job!"
			if [ $? -ne 0 ]; then
				echo
				exit 1
			fi
			echo
			echo sudo mkdir -p "${prefix}"
			sudo mkdir -p "${prefix}"
			echo
			echo sudo chown $UID "${prefix}"
			sudo chown $UID "${prefix}"
		fi
	fi

    	testfile="${prefix}/.secret-world-domination-project"
	touch "${testfile}" 2> /dev/null
	if [ $? -ne 0 ]; then
		echo
		echo "error: \"${ptxconf_prefix}\""
		echo "       does exist, but is not writeable."
		echo "       Change the permissions and try again."
		echo
		read -t 5 -p "press enter to let sudo do the job!"
		if [ $? -ne 0 ]; then
			echo
			exit 1
		fi
		echo
		echo sudo chown $UID "${prefix}"
		sudo chown $UID "${prefix}"
		echo sudo chmod u+w "${prefix}"
		sudo chmod u+w "${prefix}"

		touch "${testfile}" 2> /dev/null
		if [ $? -ne 0 ]; then
			echo
			echo "error: cannot make \"${ptxconf_prefix}\" writeable, giving up"
			echo
			exit 1
		fi
	fi

	rm "${testfile}"

	mkdir -p "${prefix}"/{etc,lib,{,s}bin,include,{,share/}man/man{1,2,3,4,5,6,7,8,9}}
}


#
# Most install stages think that some standard directories are there, so
# they are created here.
#
check_dirs() {
	local ptxconf_sysroot_target ptxconf_sysroot_host ptxconf_sysroot_cross
	local dir testfile_upper testfile_lower

	ptxconf_sysroot_target="$(ptxd_get_ptxconf PTXCONF_SYSROOT_TARGET)"
	ptxconf_sysroot_host="$(ptxd_get_ptxconf PTXCONF_SYSROOT_HOST)"
	ptxconf_sysroot_cross="$(ptxd_get_ptxconf PTXCONF_SYSROOT_CROSS)"

	# check for r/w and create standard directory layout
	for dir in \
		"${ptxconf_sysroot_target}" \
		"${ptxconf_sysroot_target}/usr" \
		"${ptxconf_sysroot_host}" \
		"${ptxconf_sysroot_cross}" \
		; do
		check_dirs_prefix "${dir}"
	done

	# create build and output dirs
	for dir in \
		"${BUILDDIR}" \
		"${CROSS_BUILDDIR}" \
		"${HOST_BUILDDIR}" \
		"${STATEDIR}" \
		"${IMAGEDIR}" \
		"${ROOTDIR}" \
		"${ROOTDIR_DEBUG}" \
		; do
		mkdir -p "${dir}"
	done

	# check for case sensitive file system
	for dir in \
		"${BUILDDIR}" \
		"${CROSS_BUILDDIR}" \
		"${HOST_BUILDDIR}" \
		; do
		testfile_lower=${dir}/.secret-world-domination-project
		testfile_upper=${dir}/.Secret-World-Domination-Project

		echo lower > "${testfile_lower}"
		echo upper > "${testfile_upper}"

		if [ "$(cat "${testfile_lower}")" != "lower" -o \
		    "$(cat "${testfile_upper}")" != "upper" ]; then
			echo
			echo "error: \"${dir}\""
			echo "       is not a case sensitive filesystem."
			echo "       Please move your project to a case sensitive one"
			echo
			exit 1
		fi

		rm "${testfile_lower}" "${testfile_upper}"
	done
}

check_if_selected() {
	if [ -z ${1} ]; then
		echo
		echo "${PROMPT}error: please specify a target"
		echo
		exit 1
	fi
	local configvar="PTXCONF_$(ptxd_name_to_NAME ${1})"
	local ptxconfig_configvar="$(ptxd_get_ptxconf $configvar)"

	if [ -z ${ptxconfig_configvar} ]; then
		echo
		echo "${PROMPT}error: $1 is not selected in ${PTXCONFIG}"
		echo
		exit 1
	fi
}


clone() {
	local ifs_old projectdir

	if [ -z "$1" ]; then usage; exit 1; fi
	if [ -z "$2" ]; then usage; exit 1; fi

	if [ -d "$2" ]; then
		echo
		echo "${PROMPT}error: directory $2 does already exist"
		echo
		exit 1
	fi

	ifs_old=$IFS
	IFS=:

	for projectdir in ${PTXCONF_SETUP_PROJECTPATH}; do

		echo "${PROMPT}scanning $projectdir..."

		if [ -d "${projectdir}/$1" ] ; then

			mkdir -p $2
			tar -C ${projectdir}/$1 -cf - \
			    --exclude .svn --exclude state --exclude debian . | \
			    tar -C $2 -xvf -

			echo "${PROMPT}done."
			echo
			return 0
		fi
	done
	IFS=$ifs_old

	echo "${PROMPT}project $1 is to be cloned, but could not be found"
	echo
}


#
# usage()
#
usage() {
cat << EOF

PTXdist $(printf "%-24s" ${FULLVERSION}) Build System for Embedded Linux Systems

  ptxdist <action [args]> [options]

Setup and Project Actions:

  setup				setup per-user preferences
  boardsetup			setup per-board preferences

  projects			show available projects
  clone <from> <to>		create a new project, cloned from <from>.

  menuconfig			configure the root filesystem
  oldconfig			run 'make oldconfig' on ptxconfig file
  kernelconfig			configure the kernel

  u_boot_config			configure U-Boot (U-Boot V2 only)

  toolchain [<path>]		if path is omitted the toolchain is guessed,
				    guessing works only platformconfig is
				    already selected)
				othewise select this toolchain
				    (<path> to binaries)
  select <config>		if there is no ptxconfig file you can
				select one of several configs to be used
Build Actions:

  go				start building the current project

  get <package>			get packet sources
  extract <package>		extract packet
  prepare <package>		run configure stages for packet
  compile <package>		compile the sources
  install <package>		install host side components into sysroot/
  targetinstall <package>	install files for target into root/
  clean <package>		cleanup packet
  autobuild			search for "autobuild" scripts and run them
  drop <package>.<stage>	mark a stage of a packet as unbuilt

  images			build images for target system

Clean Actions:

  clean				cleanup build-host and build-cross dirs
  distclean			cleanup everything
  (clean images)		cleanup images directory
  clean root			cleanup root directory for target
  (clean project)		cleanup project specific packages
  (clean maintainer)		maintainerclean

Misc

  --version			print out ptxdist version

  (svn up)			run "svn update" in topdir and project dir
  (svn stat)			run "svn stat" in topdir and project dir

  test <testname>		run tests

  newpacket <type>		create a new packet Makefile in a rules dir
				type can be one of:
				target, host, host-existing-target,
				cross, cross-existing-target, source,
				kernel_driver, font, simple

EOF
}

clean() {
	local dir bdir
	local ptxconf_sysroot_target ptxconf_sysroot_host ptxconf_sysroot_cross

	# we want to clean the root dir
	if [ "$1" = "root" ]; then
		echo
		echo "${PROMPT}cleaning root directory..."
		rm -fr "${ROOTDIR}"
		rm -fr "${ROOTDIR_DEBUG}"
		echo "${PROMPT}cleaning targetinstall stages..."
		rm -f "${STATEDIR}"/*.targetinstall*
		echo "${PROMPT}done."
		echo
		return
	fi

	# we want to clean a single package
	if [ -n "$1" ]; then
		check_if_selected "${1}"
		ptxd_make "${1}_clean"
		return
	fi

	echo
	echo "${PROMPT}removing build directories..."
	for dir in "${BUILDDIR}" "${CROSS_BUILDDIR}" "${HOST_BUILDDIR}"; do
		if [ ! -d "${dir}" ]; then
			continue
		fi
		for bdir in $(find "${dir}" -maxdepth 1 -mindepth 1 -type l); do
		    # run 'make clean' for linked source directories
		    pushd "${bdir}" > /dev/null
		    echo -n "${PROMPT}running \"make clean\" in \"${bdir#${dir}/}\"... "
		    make clean 1> /dev/null 2>&1
		    echo "done"
		    popd > /dev/null
		done
		rm -rf "${dir}"
	done

	if [ -f "${PTXCONFIG}" ]; then
		echo "${PROMPT}removing sysroot directories..."
		ptxconf_sysroot_target="$(ptxd_get_ptxconf PTXCONF_SYSROOT_TARGET)"
		ptxconf_sysroot_host="$(ptxd_get_ptxconf PTXCONF_SYSROOT_HOST)"
		ptxconf_sysroot_cross="$(ptxd_get_ptxconf PTXCONF_SYSROOT_CROSS)"

		for dir in "${ptxconf_sysroot_target}" "${ptxconf_sysroot_host}" "${ptxconf_sysroot_cross}"; do
			if [ ! -d "${dir}" ]; then
				continue
			fi
			#
			# remove the dir only if it is inside the workspace; if we for
			# example build toolchains or production builds to /opt/...,
			# we don't want to clean them here!
			#
			case "${dir}" in
			    (${PTXDIST_WORKSPACE}/*)
				rm -rf "${dir}"
				;;
			    (*)
				;;
			esac
		done
	fi

	echo "${PROMPT}removing deps..."
	rm -f "${PTXDIST_PLATFORMDIR}/"{depend.out,deptree-a4.ps,deptree.ps}
	echo "${PROMPT}removing imagedir..."
	rm -fr "${IMAGEDIR}"
	echo "${PROMPT}removing root..."
	rm -fr "${ROOTDIR}"
	rm -fr "${ROOTDIR_DEBUG}"
	echo "${PROMPT}removing state..."
	rm -fr "${STATEDIR}"
	echo "${PROMPT}removing logfile..."
	rm -f "${PTXDIST_PLATFORMDIR}/logfile"
	echo "${PROMPT}removing test logfile..."
	rm -f "${PTXDIST_PLATFORMDIR}/test.log"
	echo "${PROMPT}removing packages dir..."
	rm -fr "${PKGDIR}"

	# remove the remaining PTXDIST_PLATFORMDIR (if empty)
	rmdir "${PTXDIST_PLATFORMDIR}" > /dev/null 2>&1

	echo "${PROMPT}done."
	echo
}

drop() {
	local statefile
	if [ -z "$2" ]; then
		statefile="$1"
	else
		statefile="$1.$2"
	fi

	echo
	if [ -e "${STATEDIR}/${statefile}" ]; then
		rm -f "${STATEDIR}/${statefile}"
		echo "dropping ${statefile}"
		echo
		exit
	else
		echo "stage ${statefile} isn't built, so we cannot drop it"
		echo
		exit 1
	fi
}

menuconfig_action() {
	echo "${PROMPT}menuconfig..."
	"${PTXDIST_TOPDIR}/scripts/kconfig/mconf" "${PTXDIST_KCONFIG}"
}

newpacket() {
	local packet_name version url author year suffix overwrite \
	    template template_file template_suffix packet_filename packet_name packet PACKET packetdash filename \
	    class CLASS autoconf_class

	case $1 in
	    target|host|host-existing-target|cross|cross-existing-target|source|kernel_driver|font|simple)
		;;
	    *)	echo
		echo "${PROMPT}error: illegal packet type: $1"
		echo "must be one of host, host-existing-target, target,"
		echo "cross, cross-existing-target, source, kernel_driver, font, simple"
		echo
		exit 1
		;;
	esac

	echo
	echo "${PROMPT}creating a new packet:"
	echo
	echo -n "${PROMPT}enter packet name.......: "
	read packet_name
	echo -n "${PROMPT}enter version number....: "
	read version
	echo -n "${PROMPT}enter URL of basedir....: "
	read url
	echo -n "${PROMPT}enter packet author.....: "
	read author
	echo -n "${PROMPT}enter suffix............: "
	read suffix

	case $1 in
	    target)
		template=template
		class=
		autoconf_class=
		;;
	    host)
		template=template-class
		class=host-
		autoconf_class=HOST_
		;;
	    cross)
		template=template-class
		class=cross-
		autoconf_class=HOST_CROSS_
		;;
	    host-existing-target)
		template=template-class-existing-target
		class=host-
		autoconf_class=HOST_
		;;
	    cross-existing-target)
		template=template-class-existing-target
		class=cross-
		autoconf_class=HOST_CROSS_
		;;
	    source)
		template=template-src
		class=
		autoconf_class=
		;;
	    kernel_driver)
		template=template-driver
		class=
		autoconf_class=
		;;
	    font)
		template=template-font
		class=
		autoconf_class=
		;;
	    simple)
		template=template-file
		class=
		autoconf_class=
		;;
	esac

	packet_filename="${packet_name}"

	packet="$(echo ${packet_name} | tr "[A-Z]" "[a-z]")"
	packetdash="$(echo ${packet} | tr "[_]" "[\-]")"
	PACKET="$(echo ${packet_name} | tr "[a-z-]" "[A-Z_]")"
	CLASS="$(echo ${class} | tr "[a-z-]" "[A-Z_]")"

	year=$(date +%Y)

	for template_suffix in "make" "in"; do
	    template_file="${RULESDIR}/${template}-${template_suffix}"
	    filename="${class}${packet_filename}.${template_suffix}"

	    if [ ! -f "${template_file}" ]; then
		echo
		echo "${PROMPT}warning: template \"${template_file}\" does not exist"
		echo
		continue
	    fi

	    if [ -f "${filename}" ]; then
		echo
		echo -n "${PROMPT}warning: ${filename} does already exist, overwrite? [y/n]"
		read overwrite
		if [ "$overwrite" != "y" ]; then
		    echo "${PROMPT}aborted."
		    echo
		    exit
		fi
	    fi

	    sed \
		-e "s#\@packet_filename@#${packet_filename}#g" \
		-e "s#\@PACKET@#${PACKET}#g" \
		-e "s#\@packet@#${packet}#g" \
		-e "s#\@packetdash@#${packetdash}#g" \
		-e "s#\@class@#${class}#g" \
		-e "s#\@CLASS@#${CLASS}#g" \
		-e "s#\@AUTOCONF_CLASS@#${autoconf_class}#g" \
		-e "s#\@VERSION@#${version}#g" \
		-e "s#\@URL@#${url}#g" \
		-e "s#\@YEAR@#${year}#g" \
		-e "s#\@AUTHOR@#${author}#g" \
		-e "s#\@SUFFIX@#${suffix}#g" \
		"${template_file}" \
		> "${filename}"
	done
}

oldconfig_action() {
	"${PTXDIST_TOPDIR}/scripts/kconfig/conf" -s "${PTXDIST_KCONFIG}"
}

#
# platform config
#
platformconfig() {
	local tmpdir kconfig

	echo
	echo "${PROMPT}platformconfig..."

	if [ -e "${PTXDIST_WORKSPACE}/platforms/Kconfig" ]; then
		kconfig=${PTXDIST_WORKSPACE}/platforms/Kconfig
	else
		kconfig=${PTXDIST_TOPDIR}/platforms/Kconfig
	fi

	tmpdir="$(mktemp -d ${PTXDIST_TEMPDIR}/platformconfig.XXXXXX)"
	pushd $tmpdir > /dev/null
	ln -sf "${PTXDIST_TOPDIR}/platforms"
	ln -sf "${PTXDIST_WORKSPACE}" workspace

	# prepare everything to make kconfig see it's original environment
	if [ -e "${PLATFORMCONFIG}" ]; then
		cp "$(readlink -f ${PLATFORMCONFIG})" .config
	fi

	# store boardsetup
	"${PTXDIST_TOPDIR}/scripts/kconfig/mconf" "${kconfig}"
	echo "${PROMPT}saving ${PLATFORMCONFIG}"
	cp .config "$(readlink -f ${PLATFORMCONFIG})"

	popd > /dev/null
	echo "${PROMPT}cleanup..."
	rm -fr $tmpdir
}


projects() {
	local ifs_old projects projectdir
	echo
	echo "${PROMPT}searching for projects:"
	ifs_old=$IFS
	IFS=:
	projects=
	for projectdir in ${PTXCONF_SETUP_PROJECTPATH}; do
		echo "${PROMPT}scanning ${projectdir}..."
		if [ ! -d ${projectdir} ]; then
			echo
			echo "${PROMPT}error: directory does not exist"
			echo "${PROMPT}please check PTXCONF_SETUP_PROJECTPATH in 'ptxdist setup'"
			exit 1
		fi
		projects="$projects $(cd ${projectdir} && find .  -maxdepth 1 -type d ! -name .svn ! -name . -exec basename {} \;)"
	done
	IFS=$ifs_old
	projects=$(echo $projects | sort -u)
	echo
	echo "---------------------- Available PTXdist Projects: ----------------------------"
	for i in $projects; do echo $i; done
	echo "-------------------------------------------------------------------------------"
	echo
}


setup() {
	local tmpdir

	echo
	echo "${PROMPT}setup..."
	tmpdir="$(mktemp -d ${PTXDIST_TEMPDIR}/setup.XXXXXX)"
	pushd $tmpdir > /dev/null

	# prepare everything to make kconfig see its original environment
	cp "${PTXDIST_TOPDIR}/config/setup/ptxdistrc.default" .config
	if [ -f "$HOME/.ptxdistrc.${FULLVERSION}" ]; then
		echo "using \$HOME/.ptxdistrc.${FULLVERSION}"
		cp "$HOME/.ptxdistrc.${FULLVERSION}" .config
	fi

	# store ~/.ptxdistrc
	"${PTXDIST_TOPDIR}/scripts/kconfig/mconf" "${PTXDIST_TOPDIR}/config/setup/Kconfig"
	echo "${PROMPT}saving \$HOME/.ptxdistrc.${FULLVERSION}"
	cp .config "$HOME/.ptxdistrc.${FULLVERSION}"

	popd > /dev/null
	echo "${PROMPT}cleanup..."
	rm -fr $tmpdir
}


toolchain() {
	local toolchain
	local vendor target version hint num

	toolchain="${1}"

	#
	# guess the toolchain if path is omitted
	#
	if [ -z "${toolchain}" ]; then
		if [ ! -e "${PLATFORMCONFIG}" ]; then
			echo
			echo "${PROMPT}error: cannot guess toolchain, no ${PLATFORMCONFIG#${PTXDIST_WORKSPACE}/} found"
			echo
			exit 1
		fi

		vendor="$(ptxd_get_ptxconf PTXCONF_CROSSCHAIN_VENDOR)"
		target="$(ptxd_get_ptxconf PTXCONF_GNU_TARGET)"
		version="$(ptxd_get_ptxconf PTXCONF_CROSSCHAIN_CHECK)"

		hint="/opt/${vendor}/${target}/gcc-${version}-*/bin"

		if [ -z "${vendor}" -o \
		    -z "${target}" -o \
		    -z "${version}" ]; then
			echo
			echo "${PROMPT}error: insufficient information in your ptxconfig file"
			echo "${PROMPT}       please use 'ptxdist toolchain <path>"
			echo
			exit 1
		else
			echo
			echo "${PROMPT}CROSSCHAIN_VENDOR : ${vendor}"
			echo "${PROMPT}CROSSCHAIN_CHECK  : ${version}"
			echo "${PROMPT}GNU_TARGET        : ${target}"
			echo "${PROMPT}"
			echo "${PROMPT}looking for       : ${hint}"
			echo "${PROMPT}"
		fi
		# let the shell expand the "*" in the hint, put it into an array
		toolchain=($(echo ${hint}))

		# number of items in array == number of found toolchains
		num="${#toolchain[@]}"

		if [ ${num} -eq 0 ]; then
			echo "${PROMPT}"
			echo "${PROMPT}"
			echo "${PROMPT}error: sorry, no toolchain found, matching"
			echo "${PROMPT}       ${hint}"
			echo
			exit 1
		elif [ ${num} -ne 1 ]; then
			echo "${PROMPT}"
			echo "${PROMPT}"
			echo "${PROMPT}error: more than one toolchain found, matching"
			echo "${PROMPT}       ${hint}"
			echo "${PROMPT}       ${toolchain}"
			echo
			exit 1
		fi
	fi

	if [ ! -d "${toolchain}" ]; then
		echo
		echo "${PROMPT}error: path ${toolchain} does not exist"
		echo
		exit 1
	fi
	echo "${PROMPT}using toolchain in \"${toolchain}\""
	test -L ".toolchain" && rm -f .toolchain
	if [ -e ".toolchain" ]; then
		echo
		echo "${PROMPT}error: There is a .toolchain in this directory which is no link."
		echo "${PROMPT}error: This should never happen, please contact the"
		echo "${PROMPT}error: Pengutronix Department of Illegal File Removement."
		echo
		exit 1
	fi
	ln -sf "${toolchain}" .toolchain
	echo
}




################ setup stuff only ################################


#
# figure out PTXDIST_TOPDIR
# this is where the ptxdist installation lives
#
# out: PTXDIST
#      PTXDIST_WORKSPACE
#      PTXDIST_TOPDIR
#
setup_topdir() {
	local topdir

	PTXDIST="${0}"
	PTXDIST_WORKSPACE="$(pwd)"

	if [ -L "${PTXDIST}" ]; then
		topdir="$(readlink -f "${PTXDIST}")"
	else
		topdir="${PTXDIST}"
	fi
	topdir="$(cd "$(dirname "${topdir}")"/.. && pwd)"

	#
	# sanity check: is PTXdist already configured?
	#
	if [ ! -e "${topdir}/.done" ]; then
		echo
		echo "${PROMPT}error: PTXdist in ${topdir} is not built."
		echo
		exit 1
	fi

	PTXDIST_TOPDIR="${topdir}"
}


#
# deletes ptxdist's temporary storage
#
# in: PTXDIST_TEMPDIR
#
ptxdist_deltemp() {
	if [ -n "${PTXDIST_TEMPDIR}" -a -d "${PTXDIST_TEMPDIR}" ]; then
		rm -rf "${PTXDIST_TEMPDIR}"
	fi
}


#
# setups trap, to delete temporary storage
#
setup_traps() {
	trap 'ptxdist_deltemp' 0 1 15
}


#
# source the scripts we need
#
# we need the PTXdist shell library
# we need the version definitions
# we need the static variable definitions
#
# out: "ptxd_*"		library calls
#      "*"		ptxdist version variables
#      "*DIR"		directory definitions (some not correct, due to missing PTXDIST_PLATFORMDIR)
#      PTXDIST_TEMPDIR	generic ptxdist temp dir
#
setup_libs() {
	local file abs_file

	for file in \
		scripts/ptxdist_vars.sh \
		scripts/ptxdist_version.sh \
		scripts/libptxdist.sh \
	; do
		abs_file="${PTXDIST_TOPDIR}/${file}"
		if [ -e "${abs_file}" ]; then
			. "${abs_file}"
		else
			echo "${PROMPT}FATAL didn't find ${abs_file}"
			exit 1
		fi
	done

	PTXDIST_TEMPDIR="$(mktemp -d /tmp/ptxdist.XXXXXX)"
	if [ ${?} -ne 0 ]; then
		echo
		echo "${PROMPT}error: unable to create tempdir"
		echo
		exit 1
	fi
}


#
# setup PTXDIST_PLATFORMDIR properly
#
# out: PTXDIST_PLATFORMDIR
#      PTXDIST_PLATFORMSUFFIX
#      PTXDIST_PLATFORMCONFIGDIR
#      "*DIR"	correct directory definitions
#
setup_platform() {
	local platform cfg_dir

	platform="$(ptxd_get_ptxconf PTXCONF_PLATFORM)"

	if [ -n "${platform}" ]; then
		PTXDIST_PLATFORMDIR="${PTXDIST_WORKSPACE}/platform-${platform}"
		PTXDIST_PLATFORMSUFFIX=".${platform}"
	else
		PTXDIST_PLATFORMDIR="${PTXDIST_WORKSPACE}"
		PTXDIST_PLATFORMSUFFIX=""
	fi

	# reread vars with correct PTXDIST_PLATFORMDIR
	. "${SCRIPTSDIR}/ptxdist_vars.sh"

	if [ -L ${PLATFORMCONFIG} ]; then
		cfg_dir="$(dirname "$(readlink -f "${PLATFORMCONFIG}")")"
	elif [ -e ${PLATFORMCONFIG} ]; then
		cfg_dir="$(dirname "${PLATFORMCONFIG}")"
	else
		unset cfg_dir
	fi

	PTXDIST_PLATFORMCONFIGDIR="${cfg_dir}"
}


#
# source the user's .ptxdistrc
# or default one
# setup PTXDIST_SRCDIR
#
# out: PTXCONF_*	user preferences
#      PTXDIST_SRCDIR
#      PTXDIST_PARALLELMFLAGS_INTERN
#      PTXDIST_PARALLELMFLAGS_EXTERN
#
setup_config() {
	local rc_user rc_default cpus pmf_intern pmf_extern

	rc_user="${HOME}/.ptxdistrc.${FULLVERSION}"
	rc_default="${PTXDIST_TOPDIR}/config/setup/ptxdistrc.default"

	if [ -e "${rc_user}" ]; then
		ptxd_source_kconfig "${rc_user}"
	else
		ptxd_source_kconfig "${rc_default}"
	fi

	#
	# setup SRCDIR
	#
	if [ -z ${PTXCONF_SETUP_SRCDIR} ]; then
		PTXDIST_SRCDIR="${PTXDIST_WORKSPACE}/src"
	else
		PTXDIST_SRCDIR="${PTXCONF_SETUP_SRCDIR}"
	fi

	#
	# setup PARALLELMFLAGS
	#

	# default no parallel for now
	pmf_extern=-j1

	#
	# user may override PARALLELMFLAGS
	#
	if [ -n "${PARALLELMFLAGS}" ]; then
		pmf_intern="${PARALLELMFLAGS}"
		unset PARALLELMFLAGS
	elif [ -r /proc/cpuinfo ]; then
		cpus="$(egrep '^(processor|cpu  )' /proc/cpuinfo | wc -l)"
		if [ $cpus -eq 0 ]; then
			cpus="1"
		fi

		pmf_intern=-j$(( $cpus * 2 ))
	fi

	#
	# user may overwrite these, too
	#
	PTXDIST_PARALLELMFLAGS_INTERN="${PTXDIST_PARALLELMFLAGS_INTERN:-${pmf_intern}}"
	PTXDIST_PARALLELMFLAGS_EXTERN="${PTXDIST_PARALLELMFLAGS_EXTERN:-${pmf_extern}}"
}


#
# add .toolchain and sysroots to path
#
# out: PATH
#      PTXDIST_TOOLCHAIN
#
setup_path() {
	local sysroot_host
	#
	# use linked toolchain if available
	#
	if [ -d ".toolchain" ]; then
		PTXDIST_TOOLCHAIN="${PTXDIST_WORKSPACE}/.toolchain"
		PATH="${PTXDIST_TOOLCHAIN}:$PATH"
	fi

	# dir might not be available yet, but will be created later
	sysroot_host="$(ptxd_get_ptxconf PTXCONF_SYSROOT_HOST)"

	if [ -n "${sysroot_host}" ]; then
		PATH="${sysroot_host}/bin:${sysroot_host}/sbin:$PATH"
	fi
}


########################################################################
# main()
########################################################################

setup_topdir
setup_traps
setup_libs
# ---  libs are available from here ---
setup_platform
# --- platformdir and other *dirs are available from here ---
setup_config
# --- all variables are defined now ---
setup_path
# --- path is now set ---

export PROJECT FULLVERSION VERSION PATCHLEVEL SUBLEVEL EXTRAVERSION		# FIXME: review these
export \
	PATH \
	\
	PTXDIST \
	PTXDIST_TOPDIR \
	PTXDIST_SRCDIR \
	PTXDIST_TEMPDIR \
	\
	PTXDIST_WORKSPACE \
	\
	PTXDIST_PLATFORMDIR \
	PTXDIST_PLATFORMSUFFIX \
	PTXDIST_PLATFORMCONFIGDIR \
	\
	PTXDIST_PARALLELMFLAGS_INTERN

check_uid
check_path

if [ "$#" = "0" ]; then
	usage
	exit 0
fi

while [ "$#" != "0" ]; do

	case "${1}" in
	autobuild)	echo
			echo "${PROMPT}running autobuild"
			echo
			AUTOBUILDS=$(find . -name "autobuild*" | grep -v .svn)
			AUTOBUILD_TOPDIR=$(pwd)
			exec 5>COMPILETEST
			echo >&5
			for i in $AUTOBUILDS; do
				pushd $(dirname $i)
				
				echo "config............: $(basename $(pwd))" >&5
				echo "date..............: $(date)" >&5
				echo "user..............: ${USER}@${HOSTNAME}" >&5
				PTX_STARTTIME=$(date +"%s")

				./$(basename $i)

				PTX_RETVAL=$?
				PTX_STOPTIME=$(date +"%s")
				let "PTX_TIME=$PTX_STOPTIME-$PTX_STARTTIME"
				let "PTX_TIME_H=$PTX_TIME/3600"
				let "PTX_TIME_M=($PTX_TIME-$PTX_TIME_H*3600)/60"
				let "PTX_TIME_S=($PTX_TIME-$PTX_TIME_H*3600-$PTX_TIME_M*60)/60"
				echo "buildtime.........: ${PTX_TIME_H}h${PTX_TIME_M}m${PTX_TIME_S}s" >&5
				echo "result............: ${PTX_RETVAL}" >&5
				echo >&5

				[ -e "logfile" ] && mv logfile "${AUTOBUILD_TOPDIR}/$(basename $(pwd)).log"
				[ "${PTX_RETVAL}" = "0" ] && ${PTXDIST} distclean

				popd
			done
			echo
			echo "${PROMPT}done"
			echo
			exit
			;;
	boardsetup)	shift
			check_ptxconfig
			boardsetup
			;;
	compile)	shift
			check_ptxconfig
			check_if_selected $1
			check_compiler
			check_dirs
			check_deps
			ptxd_make "${STATEDIR}/${1}.compile" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	clean)		shift
			check_ptxconfig
			check_deps
			clean $1
			exit
			;;
	clone)		shift;
			clone $1 $2
			exit
			;;
	-d|--debug)	shift
			export PTXDIST_MAKE_DBG="--debug=make"
			;;
	distclean)	shift
			clean
			echo "${PROMPT}removing toolchain link..."
			rm -f .toolchain
			echo "${PROMPT}removing logs dir..."
			rm -fr ${PTXDIST_PLATFORMDIR}/logfile
			if [ -L "${PTXCONFIG}" ]; then
				echo "${PROMPT}removing ptxconfig link..."
				rm "${PTXCONFIG}"
			fi
			if [ -L "${PLATFORMCONFIG}" ]; then
				echo "${PROMPT}removing platformconfig link..."
				rm "${PLATFORMCONFIG}"
			fi
			echo
			;;
	drop)		shift
			check_ptxconfig
			drop $1 $2
			;;
	export)		shift
			if [ ! -d "${1}" ]; then
				echo
				echo "${PROMPT}error: directory '$1' does not exist!"
				echo
				exit 1
			fi
			export EXPORTDIR="${1}"
			check_ptxconfig
			check_deps
			ptxd_make export 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	extract)	shift
			check_ptxconfig
			check_if_selected $1
			check_deps
			ptxd_make "${STATEDIR}/${1}.extract" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	get)		shift
			check_ptxconfig
			check_deps
			if [ $# -eq 0 ]; then
				ptxd_make get 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
				check_pipe_status
				exit
			else
				check_if_selected $1
				ptxd_make "${STATEDIR}/${1}.get" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
				check_pipe_status
				exit
			fi
			;;
	go)		shift
			check_ptxconfig
			check_compiler
			check_dirs
			check_deps
			ptxd_make world 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	help|--help)	shift
			usage
			exit
			;;
	images)		shift
			check_ptxconfig
			check_compiler
			check_dirs
			check_deps
			ptxd_make images 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	install)	shift
			check_ptxconfig
			check_if_selected $1
			check_compiler
			check_dirs
			check_deps
			ptxd_make "${STATEDIR}/${1}.install" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	kernelconfig)	shift
			check_ptxconfig
			check_deps
			ptxd_make kernel_menuconfig
			check_pipe_status
			exit
			;;
	u_boot_config)	shift
			check_ptxconfig
			check_deps
			ptxd_make u-boot-v2_menuconfig
			check_pipe_status
			exit
			;;
	maintainer)	shift
			if [ "$#" = "0" ]; then
				echo
				echo "${PROMPT} commands:"
				echo
				echo "${PROMPT} configversionbump"
				echo "${PROMPT} alloldconfig"
				echo
				exit
			fi
			case $1 in
			configversionbump)
				echo
				echo "${PROMPT} configversionbump:"
				echo
				for i in $(find . -name "ptxconfig*" | grep -v .svn); do
					echo "${PROMPT} version fixup in $i..."
					sed -i -e \
						"s/PTXCONF_CONFIGFILE_VERSION=\".*\"/PTXCONF_CONFIGFILE_VERSION=\"${FULLVERSION}\"/g" \
						$i
				done
				;;
			alloldconfig)
				echo
				echo "${PROMPT} alloldconfig:"
				echo
				for i in $(find . -name "autobuild" | grep -v .svn); do
					i_dir=$(dirname $i)
					echo i=$i i_dir=$i_dir
					pushd $i_dir
					ptxdist oldconfig
					popd
				done
				;;
			*)
				echo
				echo "${PROMPT} error: unknown command: $1"
				echo
				exit 1
				;;
			esac
			exit
			;;
	make)		shift
			check_ptxconfig
			check_compiler
			check_dirs
			check_deps
			ptxd_make "${1}" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	menuconfig)	shift
			check_ptxconfig
			if [ ${#} -eq 0 ]; then
				ptxd_kconfig true menuconfig_action
			else
				check_deps
				ptxd_make "${1}_menuconfig"
			fi
			check_pipe_status
			exit
			;;
	newpacket)	# test if we are in a rules dir
			if [ "$(basename $(pwd))" != "rules" ]; then
				echo
				echo "${PROMPT}error: newpacket command only allowed in a rules dir"
				echo
				exit 1
			fi
			shift
			newpacket "$1"
			exit $?
			;;
	oldconfig)	shift
			check_ptxconfig
			if [ ${#} -eq 0 ]; then
				ptxd_kconfig true oldconfig_action
			else
				check_deps
				ptxd_make "${1}_oldconfig"
			fi
			exit $?
			;;
	platform)	shift
			if [ ! -f "$1" ]; then
				echo
				echo "${PROMPT}error: couldn't select \"$1\", file does not exist"
				echo
				exit 1
			fi
			if [ -f "${PLATFORMCONFIG}" ]; then
				echo
				echo -n "${PROMPT}warning: overwrite existing platformconfig [Y/n]? "
				read answer
				if [ "$answer" != "y" -a "$answer" != "" ]; then
					echo "interrupting"
					echo
					exit 1
				fi
			fi
			echo
			echo "${PROMPT}selecting platformconfig \"$1\""
			ln -sf "${1}" "${PLATFORMCONFIG}"
			echo "${PROMPT}done."
			echo
			exit
			;;
	platformconfig)	shift
			platformconfig
			;;
	prepare)	shift
			check_ptxconfig
			check_if_selected "${1}"
			check_compiler
			check_dirs
			check_deps
			ptxd_make "${STATEDIR}/${1}.prepare" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	print)		shift
			check_ptxconfig
			check_deps
			ptxd_make "print-${1}" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			shift
			;;
	projects)	shift
			projects
			;;
	select)		shift
			if [ ! -f "$1" ]; then
				echo
				echo "${PROMPT}error: couldn't select \"$1\", file does not exist"
				echo
				exit 1
			fi
			if [ -f "${PTXCONFIG}" -a ! -L "${PTXCONFIG}" ]; then
				echo
				echo "${PROMPT}error: There already is a ptxconfig file."
				echo "${PROMPT}error: If you really want to select another configuration,"
				echo "${PROMPT}error: please move away the ptxconfig file first."
				echo
				exit 1
			fi
			echo
			echo "${PROMPT}linking $1 to ptxconfig"
			ln -sf $1 ${PTXCONFIG}
			echo "${PROMPT}done."
			echo
			exit
			;;
	setup)		shift
			setup
			;;
	targetinstall)	shift
			check_ptxconfig
			check_if_selected $1
			check_compiler
			check_dirs
			check_deps
			ptxd_make "${STATEDIR}/${1}.targetinstall" 2>&1 | tee -a ${PTXDIST_PLATFORMDIR}/logfile
			check_pipe_status
			exit
			;;
	test)		shift
			if [ -z "$1" ]; then
				echo "No test given. try ptxdist test help for a list of available tests"
				exit 1
			fi
			if [ "$1" = help ]; then
				echo "available tests:"
				find $PTXDIST_WORKSPACE/tests -maxdepth 1 -type f -exec basename {} \;
				exit
			fi
			if [ -x "$PTXDIST_WORKSPACE/tests/$1" ]; then
				echo
				"$PTXDIST_WORKSPACE/tests/$1" > ${PTXDIST_WORKSPACE}/test.log
				echo
			elif [ -x "$PTXDIST_TOPDIR/tests/$1" ]; then
				echo
				"$PTXDIST_TOPDIR/tests/$1" > ${PTXDIST_WORKSPACE}/test.log
				echo
			else
				echo
				echo "${PROMPT}error: test '$1' not found in PTXDIST_TOPDIR and PTXDIST_WORKSPACE"
				echo
			fi
			exit
			;;
	toolchain)	shift
			toolchain "${1}"
			exit
			;;
	--toolchain)	shift
			echo
			PTXDIST_TOOLCHAIN="${1}"
			if [ ! -d "${PTXDIST_TOOLCHAIN}" ]; then
				echo
				echo "${PROMPT}error: path ${PTXDIST_TOOLCHAIN} does not exist"
				echo
				exit 1
			fi
			echo "${PROMPT}using toolchain in ${PTXDIST_TOOLCHAIN}"
			export PATH="${PTXDIST_TOOLCHAIN}:$PATH"
			shift
			echo
			;;
	--version)	echo ${FULLVERSION}
			exit 0
			;;
	*)		shift
			usage
			exit 1
			;;
	esac

done

exit 0