create_config 2.8 KB
Newer Older
1 2
#!/bin/sh

3 4
echo "/* Automatically generated by create_config - do not modify */"

5 6 7
while read line; do

case $line in
8 9 10 11 12 13 14 15
 VERSION=*) # configuration
    version=${line#*=}
    echo "#define QEMU_VERSION \"$version\""
    ;;
 PKGVERSION=*) # configuration
    pkgversion=${line#*=}
    echo "#define QEMU_PKGVERSION \"$pkgversion\""
    ;;
16 17 18 19 20 21 22 23 24
 qemu_*dir=*) # qemu-specific directory configuration
    name=${line%=*}
    value=${line#*=}
    define_name=`echo $name | LC_ALL=C tr '[a-z]' '[A-Z]'`
    eval "define_value=\"$value\""
    echo "#define CONFIG_$define_name \"$define_value\""
    # save for the next definitions
    eval "$name=\$define_value"
    ;;
25
 prefix=*)
26
    # save for the next definitions
27
    prefix=${line#*=}
28
    ;;
29 30 31 32
 IASL=*) # iasl executable
    value=${line#*=}
    echo "#define CONFIG_IASL $value"
    ;;
33 34 35 36 37 38 39 40
 CONFIG_AUDIO_DRIVERS=*)
    drivers=${line#*=}
    echo "#define CONFIG_AUDIO_DRIVERS \\"
    for drv in $drivers; do
      echo "    &${drv}_audio_driver,\\"
    done
    echo ""
    ;;
41 42 43 44 45 46 47 48 49
 CONFIG_BDRV_RW_WHITELIST=*)
    echo "#define CONFIG_BDRV_RW_WHITELIST\\"
    for drv in ${line#*=}; do
      echo "    \"${drv}\",\\"
    done
    echo "    NULL"
    ;;
 CONFIG_BDRV_RO_WHITELIST=*)
    echo "#define CONFIG_BDRV_RO_WHITELIST\\"
50 51 52 53 54
    for drv in ${line#*=}; do
      echo "    \"${drv}\",\\"
    done
    echo "    NULL"
    ;;
55 56 57 58 59 60 61 62 63
 CONFIG_*=y) # configuration
    name=${line%=*}
    echo "#define $name 1"
    ;;
 CONFIG_*=*) # configuration
    name=${line%=*}
    value=${line#*=}
    echo "#define $name $value"
    ;;
64 65 66 67 68 69 70 71 72
 HAVE_*=y) # configuration
    name=${line%=*}
    echo "#define $name 1"
    ;;
 HAVE_*=*) # configuration
    name=${line%=*}
    value=${line#*=}
    echo "#define $name $value"
    ;;
73 74
 ARCH=*) # configuration
    arch=${line#*=}
75
    arch_name=`echo $arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
    echo "#define HOST_$arch_name 1"
    ;;
 HOST_USB=*)
    # do nothing
    ;;
 HOST_CC=*)
    # do nothing
    ;;
 HOST_*=y) # configuration
    name=${line%=*}
    echo "#define $name 1"
    ;;
 HOST_*=*) # configuration
    name=${line%=*}
    value=${line#*=}
    echo "#define $name $value"
    ;;
93 94
 TARGET_BASE_ARCH=*) # configuration
    target_base_arch=${line#*=}
95 96
    base_arch_name=`echo $target_base_arch | LC_ALL=C tr '[a-z]' '[A-Z]'`
    echo "#define TARGET_$base_arch_name 1"
97 98 99 100 101 102 103
    ;;
 TARGET_XML_FILES=*)
    # do nothing
    ;;
 TARGET_ABI_DIR=*)
    # do nothing
    ;;
104
 TARGET_NAME=*)
105 106
    target_name=${line#*=}
    echo "#define TARGET_NAME \"$target_name\""
107
    ;;
108 109 110
 TARGET_DIRS=*)
    # do nothing
    ;;
111 112 113 114 115 116 117 118 119
 TARGET_*=y) # configuration
    name=${line%=*}
    echo "#define $name 1"
    ;;
 TARGET_*=*) # configuration
    name=${line%=*}
    value=${line#*=}
    echo "#define $name $value"
    ;;
F
Fam Zheng 已提交
120 121 122
 DSOSUF=*)
    echo "#define HOST_DSOSUF \"${line#*=}\""
    ;;
123 124 125
esac

done # read