3 echo "/* Automatically generated by create_config - do not modify */"
8 VERSION
=*) # configuration
10 echo "#define QEMU_VERSION \"$version\""
12 PKGVERSION
=*) # configuration
14 echo "#define QEMU_PKGVERSION \"$pkgversion\""
16 qemu_
*dir
=*) # qemu-specific directory configuration
19 define_name
=`echo $name | LC_ALL=C tr '[a-z]' '[A-Z]'`
20 eval "define_value=\"$value\""
21 echo "#define CONFIG_$define_name \"$define_value\""
22 # save for the next definitions
23 eval "$name=\$define_value"
26 # save for the next definitions
29 CONFIG_AUDIO_DRIVERS
=*)
31 echo "#define CONFIG_AUDIO_DRIVERS \\"
32 for drv
in $drivers; do
33 echo " &${drv}_audio_driver,\\"
37 CONFIG_BDRV_WHITELIST
=*)
38 echo "#define CONFIG_BDRV_WHITELIST \\"
39 for drv
in ${line#*=}; do
44 CONFIG_
*=y
) # configuration
46 echo "#define $name 1"
48 CONFIG_
*=*) # configuration
51 echo "#define $name $value"
53 ARCH
=*) # configuration
55 arch_name
=`echo $arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
56 echo "#define HOST_$arch_name 1"
64 HOST_
*=y
) # configuration
66 echo "#define $name 1"
68 HOST_
*=*) # configuration
71 echo "#define $name $value"
73 TARGET_ARCH
=*) # configuration
74 target_arch
=${line#*=}
75 echo "#define TARGET_ARCH \"$target_arch\""
77 TARGET_BASE_ARCH
=*) # configuration
78 target_base_arch
=${line#*=}
79 if [ "$target_base_arch" != "$target_arch" ]; then
80 base_arch_name
=`echo $target_base_arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
81 echo "#define TARGET_$base_arch_name 1"
96 TARGET_
*=y
) # configuration
98 echo "#define $name 1"
100 TARGET_
*=*) # configuration
103 echo "#define $name $value"