if  !  grep  -q  CONFIGURED  $MODULE_CONFIG;  then

  if query "Build trusting versions of tools? Allows normal users to run tools Unsecure." n ; then
    OPTS="$OPTS --trust"
  else
    OPTS="$OPTS --notrust"
  fi

  if query "Build support for CardBus cards?" y; then
    OPTS="$OPTS --cardbus"
  else
    OPTS="$OPTS --nocardbus"
  fi

  if query "Enable support for PnP BIOS? Risky for some laptops see readme." n; then
    OPTS="$OPTS --pnp"
  else
    OPTS="$OPTS --nopnp"
  fi

  if query "Enable apm suport?" y; then
    OPTS="$OPTS --apm"
  else
    OPTS="$OPTS --noapm"
  fi

fi

mquery AIRSNORT "Enable airsnort patch for orinoco cards? [untested/possibly broken]" n
mquery BUILD_CLIENT "Build client modules from pcmcia-cs? (adds extra hardware support for some devices)" n
