config_query UDEV_PERSIST 'install persistent disk rules?' n &&
config_query UDEV_STATIC 'Create static binaries in addition to dynamically linked ones?' n &&
config_query_option UDEV_DEBUG 'Compile extra debugging messages?' n 'DEBUG=true' 'DEBUG=false' &&
if [[ "$UDEV_STATIC" == 'y' ]]; then
  if [[ -z "$UDEV_STATIC_TARGET" ]]; then
    # add more UDEV utilities here as necessary, space-separated
    UDEV_STATIC_TARGET="udevstart"
  fi &&
  persistent_add UDEV_STATIC_TARGET &&
  message "${MESSAGE_COLOR}Static utilities (with suffix .static): $UDEV_STATIC_TARGET${DEFAULT_COLOR}"
fi  &&
if [[ "$UDEV_PERSIST" == "y" ]]; then
  UDEV_EXTRAS=y  &&
  persistent_add UDEV_EXTRAS
else
  config_query UDEV_EXTRAS 'Do you want to compile extras helpers?' y
fi
