Config.in.mirrors 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. menu "Mirrors and Download locations"
  2. config BR2_PRIMARY_SITE
  3. string "Primary download site"
  4. default ""
  5. help
  6. Primary site to download from. If this option is set then buildroot
  7. will try to download package source first from this site and try the
  8. default if the file is not found.
  9. NOTE: This only works for packages using the Makefile.autotools.in
  10. config BR2_BACKUP_SITE
  11. string "Backup download site"
  12. default "http://buildroot.net/downloads/sources/"
  13. help
  14. Backup site to download from. If this option is set then buildroot
  15. will fall back to download package sources from here if the
  16. normal location fails.
  17. config BR2_SOURCEFORGE_MIRROR
  18. string "Sourceforge mirror site"
  19. default "easynews"
  20. help
  21. Sourceforge has a system of mirror sites. Some sites may be
  22. closer to your location, and sometimes mirror sites go down
  23. and are no longer available. This option allows you to select
  24. your preferred Sourceforge mirror site.
  25. The list of mirrors is available here:
  26. http://prdownloads.sourceforge.net/index-sf.html?download
  27. config BR2_KERNEL_MIRROR
  28. string "Kernel.org mirror"
  29. default "http://www.kernel.org/pub/"
  30. help
  31. kernel.org is mirrored on a number of servers around the world.
  32. The following allows you to select your preferred mirror.
  33. Have a look on the kernel.org site for a list of mirrors, then enter
  34. the URL to the base directory. Examples:
  35. http://www.XX.kernel.org/pub (XX = country code)
  36. http://mirror.aarnet.edu.au/pub/ftp.kernel.org
  37. config BR2_GNU_MIRROR
  38. string "GNU Software mirror"
  39. default "http://ftp.gnu.org/pub/gnu"
  40. help
  41. GNU has multiple software mirrors scattered around the world.
  42. The following allows you to select your preferred mirror.
  43. Have a look on the gnu.org site for a list of mirrors, then enter
  44. the URL to the base directory. Examples:
  45. http://ftp.gnu.org/pub/gnu
  46. http://mirror.aarnet.edu.au/pub/gnu
  47. config BR2_DEBIAN_MIRROR
  48. string "Debian Software mirror"
  49. default "http://ftp.debian.org"
  50. help
  51. Debian has multiple software mirrors scattered around the world.
  52. The following allows you to select your preferred mirror.
  53. Usually, just add your country code like XX here:
  54. http://ftp.XX.debian.org
  55. if BR2_TARGET_ATMEL
  56. source "target/device/Atmel/Config.in.mirrors"
  57. endif
  58. endmenu