Kconfig 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Copyright (C) 2018 RDA Technologies Limited and/or its affiliates("RDA").
  2. # All rights reserved.
  3. #
  4. # This software is supplied "AS IS" without any warranties.
  5. # RDA assumes no responsibility or liability for the use of the software,
  6. # conveys no license or title under any patent, copyright, or mask work
  7. # right to the product. RDA reserves the right to make changes in the
  8. # software without notification. RDA also make no representation or
  9. # warranty that such application will be suitable for the specified use
  10. # without further testing or modification.
  11. menu "at_ftp"
  12. choice
  13. prompt "select ftp version"
  14. default AT_NEWFTP_SUPPORT
  15. config AT_FTP_SUPPORT
  16. bool "old ftp AT command"
  17. depends on NET_LWIP_TCP_ON
  18. config AT_NEWFTP_SUPPORT
  19. bool "new ftp AT command"
  20. depends on FTP_MODULE_SUPPORT
  21. if AT_NEWFTP_SUPPORT
  22. config AT_NEWFTP_SSL_SUPPORT
  23. bool "ftp over ssl support"
  24. default y
  25. depends on FTP_OVER_SSL_SUPPORT
  26. endif
  27. config AT_NOFTP_SUPPORT
  28. bool "no ftp AT command"
  29. endchoice
  30. choice
  31. prompt "select myftp version"
  32. default AT_NEWMYFTP_SUPPORT if SOC_8910
  33. default AT_NOMYFTP_SUPPORT
  34. config AT_MYFTP_SUPPORT
  35. bool "old myftp AT command"
  36. depends on NET_LWIP_TCP_ON
  37. config AT_NEWMYFTP_SUPPORT
  38. bool "new myftp AT command"
  39. depends on FTP_MODULE_SUPPORT
  40. config AT_NOMYFTP_SUPPORT
  41. bool "no myftp AT command"
  42. endchoice
  43. endmenu