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 IASL
=*) # iasl executable
31 echo "#define CONFIG_IASL $value"
33 CONFIG_AUDIO_DRIVERS
=*)
35 echo "#define CONFIG_AUDIO_DRIVERS \\"
36 for drv
in $drivers; do
37 echo " &${drv}_audio_driver,\\"
41 CONFIG_BDRV_RW_WHITELIST
=*)
42 echo "#define CONFIG_BDRV_RW_WHITELIST\\"
43 for drv
in ${line#*=}; do
48 CONFIG_BDRV_RO_WHITELIST
=*)
49 echo "#define CONFIG_BDRV_RO_WHITELIST\\"
50 for drv
in ${line#*=}; do
55 CONFIG_
*=y
) # configuration
57 echo "#define $name 1"
59 CONFIG_
*=*) # configuration
62 echo "#define $name $value"
64 ARCH
=*) # configuration
66 arch_name
=`echo $arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
67 echo "#define HOST_$arch_name 1"
75 HOST_
*=y
) # configuration
77 echo "#define $name 1"
79 HOST_
*=*) # configuration
82 echo "#define $name $value"
84 TARGET_BASE_ARCH
=*) # configuration
85 target_base_arch
=${line#*=}
86 base_arch_name
=`echo $target_base_arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
87 echo "#define TARGET_$base_arch_name 1"
96 target_name
=${line#*=}
97 echo "#define TARGET_NAME \"$target_name\""
102 TARGET_
*=y
) # configuration
104 echo "#define $name 1"
106 TARGET_
*=*) # configuration
109 echo "#define $name $value"
112 echo "#define HOST_DSOSUF \"${line#*=}\""