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 CONFIG_AUDIO_DRIVERS
=*)
18 echo "#define CONFIG_AUDIO_DRIVERS \\"
19 for drv
in $drivers; do
20 echo " &${drv}_audio_driver,\\"
24 CONFIG_BDRV_WHITELIST
=*)
25 echo "#define CONFIG_BDRV_WHITELIST \\"
26 for drv
in ${line#*=}; do
31 CONFIG_
*=y
) # configuration
33 echo "#define $name 1"
35 CONFIG_
*=*) # configuration
38 echo "#define $name $value"
40 ARCH
=*) # configuration
42 arch_name
=`echo $arch | tr '[:lower:]' '[:upper:]'`
43 echo "#define HOST_$arch_name 1"
51 HOST_
*=y
) # configuration
53 echo "#define $name 1"
55 HOST_
*=*) # configuration
58 echo "#define $name $value"
60 TARGET_ARCH
=*) # configuration
61 target_arch
=${line#*=}
62 echo "#define TARGET_ARCH \"$target_arch\""
64 TARGET_BASE_ARCH
=*) # configuration
65 target_base_arch
=${line#*=}
66 if [ "$target_base_arch" != "$target_arch" ]; then
67 base_arch_name
=`echo $target_base_arch | tr '[:lower:]' '[:upper:]'`
68 echo "#define TARGET_$base_arch_name 1"
83 TARGET_
*=y
) # configuration
85 echo "#define $name 1"
87 TARGET_
*=*) # configuration
90 echo "#define $name $value"