if ! grep -q "^OPTS=" $MODULE_CONFIG ; then

  if query "Enable GUI support?" y  ; then
    OPTS=$OPTS" --enable-gui"
  fi

  if query "Enable 3DFX Framebuffer support? " n ; then
    OPTS=$OPTS" --enable-tdfxfb"
  fi

  if query "Enable Linux devfs support? " n ; then
    OPTS=$OPTS" --enable-linux-devfs"
  fi

  if query "Enable OSD support? " n ; then
    OPTS=$OPTS" --enable-menu"
  fi

  if query "Enable Large File support? " n ; then
    OPTS=$OPTS" --enable-largefiles"
  fi

  if query "Enable Live support ?" n ; then
    OPTS=$OPTS" --enable-live"
  fi      

  echo 'OPTS='\"$OPTS\" >> $MODULE_CONFIG
fi
