summaryrefslogtreecommitdiff
path: root/create_config
diff options
context:
space:
mode:
Diffstat (limited to 'create_config')
-rwxr-xr-xcreate_config7
1 files changed, 7 insertions, 0 deletions
diff --git a/create_config b/create_config
index 30d0487e24..2f052ae615 100755
--- a/create_config
+++ b/create_config
@@ -26,6 +26,13 @@ case $line in
done
echo ""
;;
+ CONFIG_BDRV_WHITELIST=*)
+ echo "#define CONFIG_BDRV_WHITELIST \\"
+ for drv in ${line#*=}; do
+ echo " \"${drv}\",\\"
+ done
+ echo " NULL"
+ ;;
CONFIG_*=y) # configuration
name=${line%=*}
echo "#define $name 1"