Config.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. # Copyright (C) 2006-2007 OpenWrt.org
  2. #
  3. # This is free software, licensed under the GNU General Public License v2.
  4. # See /LICENSE for more information.
  5. #
  6. mainmenu "OpenWrt Configuration"
  7. config HAVE_DOT_CONFIG
  8. bool
  9. default y
  10. source "target/Config.in"
  11. menu "Target Images"
  12. config TARGET_ROOTFS_INITRAMFS
  13. bool "ramdisk"
  14. default n
  15. depends LINUX_2_6
  16. help
  17. Embed the rootfs into the kernel (initramfs)
  18. config TARGET_ROOTFS_JFFS2
  19. bool "jffs2"
  20. default y if USES_JFFS2
  21. depends !TARGET_ROOTFS_INITRAMFS
  22. help
  23. Build a jffs2 root filesystem
  24. config TARGET_ROOTFS_SQUASHFS
  25. bool "squashfs"
  26. default y if USES_SQUASHFS
  27. depends !TARGET_ROOTFS_INITRAMFS
  28. help
  29. Build a squashfs-lzma root filesystem
  30. config TARGET_ROOTFS_TGZ
  31. bool "tgz"
  32. default y if USES_TGZ
  33. depends !TARGET_ROOTFS_INITRAMFS
  34. help
  35. Build a compressed tar archive of the the root filesystem
  36. config TARGET_ROOTFS_EXT2FS
  37. bool "ext2"
  38. default y if USES_EXT2
  39. depends !TARGET_ROOTFS_INITRAMFS
  40. help
  41. Ext2 file system with some free space for uml images
  42. comment "Image Options"
  43. source "target/linux/*/image/Config.in"
  44. config TARGET_ROOTFS_FSPART
  45. int "Filesystem part size (in MB)"
  46. depends X86_GRUB_IMAGES || TARGET_ROOTFS_EXT2FS || LINUX_2_6_RB532
  47. default 16
  48. help
  49. Allows you to change the filesystem partition size
  50. config TARGET_ROOTFS_MAXINODE
  51. int "Maximum number of inodes in filesystem"
  52. depends TARGET_ROOTFS_EXT2FS
  53. default 1500
  54. help
  55. Allows you to change the maximum number of inodes in the filesystem
  56. endmenu
  57. config ALL
  58. bool "Select all packages by default"
  59. default n
  60. menuconfig DEVEL
  61. bool "Advanced configuration options (for developers)"
  62. default n
  63. select BUILDOPTS
  64. select TOOLCHAINOPTS if !NATIVE_TOOLCHAIN
  65. config BROKEN
  66. bool
  67. prompt "Show broken platforms / packages" if DEVEL
  68. default n
  69. config LOCALMIRROR
  70. string
  71. prompt "Local mirror for source packages" if DEVEL
  72. menuconfig BUILDOPTS
  73. bool
  74. prompt "Build Options" if DEVEL
  75. config CLEAN_IPKG
  76. bool
  77. prompt "Clean all ipkg files before building the rootfs" if BUILDOPTS
  78. default n
  79. config AUTOREBUILD
  80. bool
  81. prompt "Automatic rebuild of packages" if BUILDOPTS
  82. default y
  83. help
  84. Automatically rebuild packages when their files change
  85. config BUILD_SUFFIX
  86. string
  87. prompt "Build suffix to append to the BUILD_DIR variable" if BUILDOPTS
  88. default ""
  89. help
  90. Build suffix to append to the BUILD_DIR variable, i.e: build_dir_suffix
  91. config TAR_VERBOSITY
  92. bool
  93. prompt "Tar verbose" if BUILDOPTS
  94. default n
  95. config CCACHE
  96. bool
  97. prompt "Use ccache" if BUILDOPTS
  98. default n
  99. help
  100. Compiler cache; see http://ccache.samba.org/
  101. config SOURCE_FEEDS
  102. string
  103. prompt "Enter here external source feeds you want to include" if BUILDOPTS
  104. default "https://svn.openwrt.org/openwrt/packages/"
  105. help
  106. Separate sources with spaces : " "
  107. config SOURCE_FEEDS_REV
  108. string
  109. prompt "Revision for the source feed svn checkout" if BUILDOPTS
  110. default ""
  111. source "toolchain/Config.in"
  112. source "target/imagebuilder/Config.in"
  113. source "target/sdk/Config.in"
  114. source "tmp/.config-package.in"