blob: 0d851eaeb8222ed7a5e138820936909927cf37e4 (
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
|
# in projects where [ $mb_use_custom_cfgdefs = yes ],
# cfgdefs.sh is invoked from within ./configure via
# . $mb_project_dir/project/cfgdefs.sh
# a successful return from cfgdefs.sh will be followed
# by a second invocation of the config_copy() function,
# reflecting any changes to common config variables
# made by cfgdefs.sh.
# finally, cfgdefs.sh may update the contents of the
# config-time generated cfgdefs.mk.
# sofort's config test framework
. "$mb_project_dir/sofort/cfgtest/cfgtest.sh"
for arg ; do
case "$arg" in
*)
error_msg ${arg#}: "unsupported config argument."
exit 2
esac
done
cfgdefs_output_custom_defs()
{
cat "$mb_project_dir/project/config/cfgdefs.in" > cfgdefs.mk
}
cfgdefs_perform_common_tests()
{
# headers
cfgtest_header_presence 'sys/syscall.h'
}
cfgdefs_perform_target_tests()
{
# init
cfgtest_newline
cfgtest_host_section
# common tests
cfgdefs_perform_common_tests
# pretty cfgdefs.mk
cfgtest_newline
}
# cfgdefs.in --> cfgdefs.mk
cfgdefs_output_custom_defs
# strict: some tests might fail
set +e
# target-specific tests
cfgdefs_perform_target_tests
# strict: restore mode
set -e
# all done
return 0
|