adding-packages-directory.txt 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. // -*- mode:doc; -*-
  2. // vim: set syntax=asciidoc:
  3. === Package directory
  4. First of all, create a directory under the +package+ directory for
  5. your software, for example +libfoo+.
  6. Some packages have been grouped by topic in a sub-directory:
  7. +x11r7+, +efl+ and +matchbox+. If your package fits in
  8. one of these categories, then create your package directory in these.
  9. New subdirectories are discouraged, however.
  10. === Config files
  11. For the package to be displayed in the configuration tool, you need to
  12. create a Config file in your package directory. There are two types:
  13. +Config.in+ and +Config.in.host+.
  14. ==== +Config.in+ file
  15. For packages used on the target, create a file named +Config.in+. This
  16. file will contain the option descriptions related to our +libfoo+ software
  17. that will be used and displayed in the configuration tool. It should basically
  18. contain:
  19. ---------------------------
  20. config BR2_PACKAGE_LIBFOO
  21. bool "libfoo"
  22. help
  23. This is a comment that explains what libfoo is.
  24. http://foosoftware.org/libfoo/
  25. ---------------------------
  26. The +bool+ line, +help+ line and other metadata information about the
  27. configuration option must be indented with one tab. The help text
  28. itself should be indented with one tab and two spaces, lines should
  29. not be longer than 72 columns, and it must mention the upstream URL
  30. of the project.
  31. As a convention specific to Buildroot, the ordering of the attributes
  32. is as follows:
  33. 1. The type of option: +bool+, +string+... with the prompt
  34. 2. If needed, the +default+ value(s)
  35. 3. Any dependency of the +depends on+ form
  36. 4. Any dependency of the +select+ form
  37. 5. The help keyword and help text.
  38. You can add other sub-options into a +if BR2_PACKAGE_LIBFOO...endif+
  39. statement to configure particular things in your software. You can look at
  40. examples in other packages. The syntax of the +Config.in+ file is the same
  41. as the one for the kernel Kconfig file. The documentation for this syntax is
  42. available at http://kernel.org/doc/Documentation/kbuild/kconfig-language.txt[]
  43. Finally you have to add your new +libfoo/Config.in+ to
  44. +package/Config.in+ (or in a category subdirectory if you decided to
  45. put your package in one of the existing categories). The files
  46. included there are 'sorted alphabetically' per category and are 'NOT'
  47. supposed to contain anything but the 'bare' name of the package.
  48. --------------------------
  49. source "package/libfoo/Config.in"
  50. --------------------------
  51. ==== +Config.in.host+ file
  52. Some packages also need to be built for the host system. There are two
  53. options here:
  54. * The host package is only required to satisfy build-time
  55. dependencies of one or more target packages. In this case, add
  56. +host-foo+ to the target package's +BAR_DEPENDENCIES+ variable. No
  57. +Config.in.host+ file should be created.
  58. * The host package should be explicitly selectable by the user from
  59. the configuration menu. In this case, create a +Config.in.host+ file
  60. for that host package:
  61. +
  62. ---------------------------
  63. config BR2_PACKAGE_HOST_FOO
  64. bool "host foo"
  65. help
  66. This is a comment that explains what foo for the host is.
  67. http://foosoftware.org/foo/
  68. ---------------------------
  69. +
  70. The same coding style and options as for the +Config.in+ file are valid.
  71. +
  72. Finally you have to add your new +libfoo/Config.in.host+ to
  73. +package/Config.in.host+. The files included there are 'sorted alphabetically'
  74. and are 'NOT' supposed to contain anything but the 'bare' name of the package.
  75. +
  76. --------------------------
  77. source "package/foo/Config.in.host"
  78. --------------------------
  79. +
  80. The host package will then be available from the +Host utilities+ menu.
  81. [[depends-on-vs-select]]
  82. ==== Choosing +depends on+ or +select+
  83. The +Config.in+ file of your package must also ensure that
  84. dependencies are enabled. Typically, Buildroot uses the following
  85. rules:
  86. * Use a +select+ type of dependency for dependencies on
  87. libraries. These dependencies are generally not obvious and it
  88. therefore make sense to have the kconfig system ensure that the
  89. dependencies are selected. For example, the _libgtk2_ package uses
  90. +select BR2_PACKAGE_LIBGLIB2+ to make sure this library is also
  91. enabled.
  92. The +select+ keyword expresses the dependency with a backward
  93. semantic.
  94. * Use a +depends on+ type of dependency when the user really needs to
  95. be aware of the dependency. Typically, Buildroot uses this type of
  96. dependency for dependencies on target architecture, MMU support and
  97. toolchain options (see xref:dependencies-target-toolchain-options[]),
  98. or for dependencies on "big" things, such as the X.org system.
  99. The +depends on+ keyword expresses the dependency with a forward
  100. semantic.
  101. .Note
  102. The current problem with the _kconfig_ language is that these two
  103. dependency semantics are not internally linked. Therefore, it may be
  104. possible to select a package, whom one of its dependencies/requirement
  105. is not met.
  106. An example illustrates both the usage of +select+ and +depends on+.
  107. --------------------------
  108. config BR2_PACKAGE_RRDTOOL
  109. bool "rrdtool"
  110. depends on BR2_USE_WCHAR
  111. select BR2_PACKAGE_FREETYPE
  112. select BR2_PACKAGE_LIBART
  113. select BR2_PACKAGE_LIBPNG
  114. select BR2_PACKAGE_ZLIB
  115. help
  116. RRDtool is the OpenSource industry standard, high performance
  117. data logging and graphing system for time series data.
  118. http://oss.oetiker.ch/rrdtool/
  119. comment "rrdtool needs a toolchain w/ wchar"
  120. depends on !BR2_USE_WCHAR
  121. --------------------------
  122. Note that these two dependency types are only transitive with the
  123. dependencies of the same kind.
  124. This means, in the following example:
  125. --------------------------
  126. config BR2_PACKAGE_A
  127. bool "Package A"
  128. config BR2_PACKAGE_B
  129. bool "Package B"
  130. depends on BR2_PACKAGE_A
  131. config BR2_PACKAGE_C
  132. bool "Package C"
  133. depends on BR2_PACKAGE_B
  134. config BR2_PACKAGE_D
  135. bool "Package D"
  136. select BR2_PACKAGE_B
  137. config BR2_PACKAGE_E
  138. bool "Package E"
  139. select BR2_PACKAGE_D
  140. --------------------------
  141. * Selecting +Package C+ will be visible if +Package B+ has been
  142. selected, which in turn is only visible if +Package A+ has been
  143. selected.
  144. * Selecting +Package E+ will select +Package D+, which will select
  145. +Package B+, it will not check for the dependencies of +Package B+,
  146. so it will not select +Package A+.
  147. * Since +Package B+ is selected but +Package A+ is not, this violates
  148. the dependency of +Package B+ on +Package A+. Therefore, in such a
  149. situation, the transitive dependency has to be added explicitly:
  150. --------------------------
  151. config BR2_PACKAGE_D
  152. bool "Package D"
  153. select BR2_PACKAGE_B
  154. depends on BR2_PACKAGE_A
  155. config BR2_PACKAGE_E
  156. bool "Package E"
  157. select BR2_PACKAGE_D
  158. depends on BR2_PACKAGE_A
  159. --------------------------
  160. Overall, for package library dependencies, +select+ should be
  161. preferred.
  162. Note that such dependencies will ensure that the dependency option
  163. is also enabled, but not necessarily built before your package. To do
  164. so, the dependency also needs to be expressed in the +.mk+ file of the
  165. package.
  166. Further formatting details: see xref:writing-rules-config-in[the
  167. coding style].
  168. [[dependencies-target-toolchain-options]]
  169. ==== Dependencies on target and toolchain options
  170. Many packages depend on certain options of the toolchain: the choice of
  171. C library, C++ support, thread support, RPC support, wchar support,
  172. or dynamic library support. Some packages can only be built on certain
  173. target architectures, or if an MMU is available in the processor.
  174. These dependencies have to be expressed with the appropriate 'depends
  175. on' statements in the Config.in file. Additionally, for dependencies on
  176. toolchain options, a +comment+ should be displayed when the option is
  177. not enabled, so that the user knows why the package is not available.
  178. Dependencies on target architecture or MMU support should not be
  179. made visible in a comment: since it is unlikely that the user can
  180. freely choose another target, it makes little sense to show these
  181. dependencies explicitly.
  182. The +comment+ should only be visible if the +config+ option itself would
  183. be visible when the toolchain option dependencies are met. This means
  184. that all other dependencies of the package (including dependencies on
  185. target architecture and MMU support) have to be repeated on the
  186. +comment+ definition. To keep it clear, the +depends on+ statement for
  187. these non-toolchain option should be kept separate from the +depends on+
  188. statement for the toolchain options.
  189. If there is a dependency on a config option in that same file (typically
  190. the main package) it is preferable to have a global +if ... endif+
  191. construct rather than repeating the +depends on+ statement on the
  192. comment and other config options.
  193. The general format of a dependency +comment+ for package foo is:
  194. --------------------------
  195. foo needs a toolchain w/ featA, featB, featC
  196. --------------------------
  197. for example:
  198. --------------------------
  199. mpd needs a toolchain w/ C++, threads, wchar
  200. --------------------------
  201. or
  202. --------------------------
  203. crda needs a toolchain w/ threads
  204. --------------------------
  205. Note that this text is kept brief on purpose, so that it will fit on a
  206. 80-character terminal.
  207. The rest of this section enumerates the different target and toolchain
  208. options, the corresponding config symbols to depend on, and the text to
  209. use in the comment.
  210. * Target architecture
  211. ** Dependency symbol: +BR2_powerpc+, +BR2_mips+, ... (see +arch/Config.in+)
  212. ** Comment string: no comment to be added
  213. * MMU support
  214. ** Dependency symbol: +BR2_USE_MMU+
  215. ** Comment string: no comment to be added
  216. * Gcc +__sync_*+ built-ins used for atomic operations. They are
  217. available in variants operating on 1 byte, 2 bytes, 4 bytes and 8
  218. bytes. Since different architectures support atomic operations on
  219. different sizes, one dependency symbol is available for each size:
  220. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_SYNC_1+ for 1 byte,
  221. +BR2_TOOLCHAIN_HAS_SYNC_2+ for 2 bytes,
  222. +BR2_TOOLCHAIN_HAS_SYNC_4+ for 4 bytes, +BR2_TOOLCHAIN_HAS_SYNC_8+
  223. for 8 bytes.
  224. ** Comment string: no comment to be added
  225. * Gcc +__atomic_*+ built-ins used for atomic operations.
  226. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_ATOMIC+.
  227. ** Comment string: no comment to be added
  228. * Kernel headers
  229. ** Dependency symbol: +BR2_TOOLCHAIN_HEADERS_AT_LEAST_X_Y+, (replace
  230. +X_Y+ with the proper version, see +toolchain/toolchain-common.in+)
  231. ** Comment string: +headers >= X.Y+ and/or `headers <= X.Y` (replace
  232. +X.Y+ with the proper version)
  233. * GCC version
  234. ** Dependency symbol: +BR2_TOOLCHAIN_GCC_AT_LEAST_X_Y+, (replace
  235. +X_Y+ with the proper version, see +toolchain/toolchain-common.in+)
  236. ** Comment string: +gcc >= X.Y+ and/or `gcc <= X.Y` (replace
  237. +X.Y+ with the proper version)
  238. * Host GCC version
  239. ** Dependency symbol: +BR2_HOST_GCC_AT_LEAST_X_Y+, (replace
  240. +X_Y+ with the proper version, see +Config.in+)
  241. ** Comment string: no comment to be added
  242. ** Note that it is usually not the package itself that has a minimum
  243. host GCC version, but rather a host-package on which it depends.
  244. * C library
  245. ** Dependency symbol: +BR2_TOOLCHAIN_USES_GLIBC+,
  246. +BR2_TOOLCHAIN_USES_MUSL+, +BR2_TOOLCHAIN_USES_UCLIBC+
  247. ** Comment string: for the C library, a slightly different comment text
  248. is used: +foo needs a glibc toolchain+, or `foo needs a glibc
  249. toolchain w/ C++`
  250. * C++ support
  251. ** Dependency symbol: +BR2_INSTALL_LIBSTDCPP+
  252. ** Comment string: `C++`
  253. * Fortran support
  254. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_FORTRAN+
  255. ** Comment string: `fortran`
  256. * thread support
  257. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_THREADS+
  258. ** Comment string: +threads+ (unless +BR2_TOOLCHAIN_HAS_THREADS_NPTL+
  259. is also needed, in which case, specifying only +NPTL+ is sufficient)
  260. * NPTL thread support
  261. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_THREADS_NPTL+
  262. ** Comment string: +NPTL+
  263. * RPC support
  264. ** Dependency symbol: +BR2_TOOLCHAIN_HAS_NATIVE_RPC+
  265. ** Comment string: +RPC+
  266. * wchar support
  267. ** Dependency symbol: +BR2_USE_WCHAR+
  268. ** Comment string: +wchar+
  269. * dynamic library
  270. ** Dependency symbol: +!BR2_STATIC_LIBS+
  271. ** Comment string: +dynamic library+
  272. ==== Dependencies on a Linux kernel built by buildroot
  273. Some packages need a Linux kernel to be built by buildroot. These are
  274. typically kernel modules or firmware. A comment should be added in the
  275. Config.in file to express this dependency, similar to dependencies on
  276. toolchain options. The general format is:
  277. --------------------------
  278. foo needs a Linux kernel to be built
  279. --------------------------
  280. If there is a dependency on both toolchain options and the Linux
  281. kernel, use this format:
  282. --------------------------
  283. foo needs a toolchain w/ featA, featB, featC and a Linux kernel to be built
  284. --------------------------
  285. ==== Dependencies on udev /dev management
  286. If a package needs udev /dev management, it should depend on symbol
  287. +BR2_PACKAGE_HAS_UDEV+, and the following comment should be added:
  288. --------------------------
  289. foo needs udev /dev management
  290. --------------------------
  291. If there is a dependency on both toolchain options and udev /dev
  292. management, use this format:
  293. --------------------------
  294. foo needs udev /dev management and a toolchain w/ featA, featB, featC
  295. --------------------------
  296. ==== Dependencies on features provided by virtual packages
  297. Some features can be provided by more than one package, such as the
  298. openGL libraries.
  299. See xref:virtual-package-tutorial[] for more on the virtual packages.
  300. See xref:virtual-package-list[] for the symbols to depend on if your package
  301. depends on a feature provided by a virtual package.
  302. === The +.mk+ file
  303. [[adding-packages-mk]]
  304. Finally, here's the hardest part. Create a file named +libfoo.mk+. It
  305. describes how the package should be downloaded, configured, built,
  306. installed, etc.
  307. Depending on the package type, the +.mk+ file must be written in a
  308. different way, using different infrastructures:
  309. * *Makefiles for generic packages* (not using autotools or CMake):
  310. These are based on an infrastructure similar to the one used for
  311. autotools-based packages, but require a little more work from the
  312. developer. They specify what should be done for the configuration,
  313. compilation and installation of the package. This
  314. infrastructure must be used for all packages that do not use the
  315. autotools as their build system. In the future, other specialized
  316. infrastructures might be written for other build systems. We cover
  317. them through in a xref:generic-package-tutorial[tutorial] and a
  318. xref:generic-package-reference[reference].
  319. * *Makefiles for autotools-based software* (autoconf, automake, etc.):
  320. We provide a dedicated infrastructure for such packages, since
  321. autotools is a very common build system. This infrastructure 'must'
  322. be used for new packages that rely on the autotools as their build
  323. system. We cover them through a xref:autotools-package-tutorial[tutorial]
  324. and xref:autotools-package-reference[reference].
  325. * *Makefiles for cmake-based software*: We provide a dedicated
  326. infrastructure for such packages, as CMake is a more and more
  327. commonly used build system and has a standardized behaviour. This
  328. infrastructure 'must' be used for new packages that rely on
  329. CMake. We cover them through a xref:cmake-package-tutorial[tutorial]
  330. and xref:cmake-package-reference[reference].
  331. * *Makefiles for Python modules*: We have a dedicated infrastructure
  332. for Python modules that use either the +distutils+ or the
  333. +setuptools+ mechanism. We cover them through a
  334. xref:python-package-tutorial[tutorial] and a
  335. xref:python-package-reference[reference].
  336. * *Makefiles for Lua modules*: We have a dedicated infrastructure for
  337. Lua modules available through the LuaRocks web site. We cover them
  338. through a xref:luarocks-package-tutorial[tutorial] and a
  339. xref:luarocks-package-reference[reference].
  340. Further formatting details: see xref:writing-rules-mk[the writing
  341. rules].
  342. [[adding-packages-hash]]
  343. === The +.hash+ file
  344. Optionally, you can add a third file, named +libfoo.hash+, that contains
  345. the hashes of the downloaded files for the +libfoo+ package.
  346. The hashes stored in that file are used to validate the integrity of the
  347. downloaded files.
  348. The format of this file is one line for each file for which to check the
  349. hash, each line being space-separated, with these three fields:
  350. * the type of hash, one of:
  351. ** +md5+, +sha1+, +sha224+, +sha256+, +sha384+, +sha512+, +none+
  352. * the hash of the file:
  353. ** for +none+, one or more non-space chars, usually just the string +xxx+
  354. ** for +md5+, 32 hexadecimal characters
  355. ** for +sha1+, 40 hexadecimal characters
  356. ** for +sha224+, 56 hexadecimal characters
  357. ** for +sha256+, 64 hexadecimal characters
  358. ** for +sha384+, 96 hexadecimal characters
  359. ** for +sha512+, 128 hexadecimal characters
  360. * the name of the file, without any directory component
  361. Lines starting with a +#+ sign are considered comments, and ignored. Empty
  362. lines are ignored.
  363. There can be more than one hash for a single file, each on its own line. In
  364. this case, all hashes must match.
  365. .Note
  366. Ideally, the hashes stored in this file should match the hashes published by
  367. upstream, e.g. on their website, in the e-mail announcement... If upstream
  368. provides more than one type of hash (e.g. +sha1+ and +sha512+), then it is
  369. best to add all those hashes in the +.hash+ file. If upstream does not
  370. provide any hash, or only provides an +md5+ hash, then compute at least one
  371. strong hash yourself (preferably +sha256+, but not +md5+), and mention
  372. this in a comment line above the hashes.
  373. .Note
  374. The number of spaces does not matter, so one can use spaces (or tabs) to
  375. properly align the different fields.
  376. The +none+ hash type is reserved to those archives downloaded from a
  377. repository, like a 'git clone', a 'subversion checkout'...
  378. The example below defines a +sha1+ and a +sha256+ published by upstream for
  379. the main +libfoo-1.2.3.tar.bz2+ tarball, an +md5+ from upstream and a
  380. locally-computed +sha256+ hashes for a binary blob, a +sha256+ for a
  381. downloaded patch, and an archive with no hash:
  382. ----
  383. # Hashes from: http://www.foosoftware.org/download/libfoo-1.2.3.tar.bz2.{sha1,sha256}:
  384. sha1 486fb55c3efa71148fe07895fd713ea3a5ae343a libfoo-1.2.3.tar.bz2
  385. sha256 efc8103cc3bcb06bda6a781532d12701eb081ad83e8f90004b39ab81b65d4369 libfoo-1.2.3.tar.bz2
  386. # md5 from: http://www.foosoftware.org/download/libfoo-1.2.3.tar.bz2.md5, sha256 locally computed:
  387. md5 2d608f3c318c6b7557d551a5a09314f03452f1a1 libfoo-data.bin
  388. sha256 01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b libfoo-data.bin
  389. # Locally computed:
  390. sha256 ff52101fb90bbfc3fe9475e425688c660f46216d7e751c4bbdb1dc85cdccacb9 libfoo-fix-blabla.patch
  391. # No hash for 1234:
  392. none xxx libfoo-1234.tar.gz
  393. ----
  394. If the +.hash+ file is present, and it contains one or more hashes for a
  395. downloaded file, the hash(es) computed by Buildroot (after download) must
  396. match the hash(es) stored in the +.hash+ file. If one or more hashes do
  397. not match, Buildroot considers this an error, deletes the downloaded file,
  398. and aborts.
  399. If the +.hash+ file is present, but it does not contain a hash for a
  400. downloaded file, Buildroot considers this an error and aborts. However,
  401. the downloaded file is left in the download directory since this
  402. typically indicates that the +.hash+ file is wrong but the downloaded
  403. file is probably OK.
  404. Sources that are downloaded from a version control system (git, subversion,
  405. etc...) can not have a hash, because the version control system and tar
  406. may not create exactly the same file (dates, files ordering...), so the
  407. hash could be wrong even for a valid download. Therefore, the hash check
  408. is entirely skipped for such sources.
  409. If the +.hash+ file is missing, then no check is done at all.