build.tex 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. One of the biggest challenges to getting started with embedded devices is that you
  2. can't just install a copy of Linux and expect to be able to compile a firmware.
  3. Even if you did remember to install a compiler and every development tool offered,
  4. you still wouldn't have the basic set of tools needed to produce a firmware image.
  5. The embedded device represents an entirely new hardware platform, which is
  6. incompatible with the hardware on your development machine, so in a process called
  7. cross compiling you need to produce a new compiler capable of generating code for
  8. your embedded platform, and then use it to compile a basic Linux distribution to
  9. run on your device.
  10. The process of creating a cross compiler can be tricky, it's not something that's
  11. regularly attempted and so there's a certain amount of mystery and black magic
  12. associated with it. In many cases when you're dealing with embedded devices you'll
  13. be provided with a binary copy of a compiler and basic libraries rather than
  14. instructions for creating your own -- it's a time saving step but at the same time
  15. often means you'll be using a rather dated set of tools. Likewise, it's also common
  16. to be provided with a patched copy of the Linux kernel from the board or chip vendor,
  17. but this is also dated and it can be difficult to spot exactly what has been
  18. modified to make the kernel run on the embedded platform.
  19. \subsection{Building an image}
  20. OpenWrt takes a different approach to building a firmware; downloading, patching
  21. and compiling everything from scratch, including the cross compiler. To put it
  22. in simpler terms, OpenWrt doesn't contain any executables or even sources, it's an
  23. automated system for downloading the sources, patching them to work with the given
  24. platform and compiling them correctly for that platform. What this means is that
  25. just by changing the template, you can change any step in the process.
  26. As an example, if a new kernel is released, a simple change to one of the Makefiles
  27. will download the latest kernel, patch it to run on the embedded platform and produce
  28. a new firmware image -- there's no work to be done trying to track down an unmodified
  29. copy of the existing kernel to see what changes had been made, the patches are
  30. already provided and the process ends up almost completely transparent. This doesn't
  31. just apply to the kernel, but to anything included with OpenWrt -- It's this one
  32. simple understated concept which is what allows OpenWrt to stay on the bleeding edge
  33. with the latest compilers, latest kernels and latest applications.
  34. So let's take a look at OpenWrt and see how this all works.
  35. \subsubsection{Download openwrt}
  36. This article refers to the "Kamikaze" branch of OpenWrt, which can be downloaded via
  37. subversion using the following command:
  38. \begin{Verbatim}
  39. $ svn co https://svn.openwrt.org/openwrt/trunk kamikaze
  40. \end{Verbatim}
  41. Additionally, there's a trac interface on \href{https://dev.openwrt.org/}{https://dev.openwrt.org/}
  42. which can be used to monitor svn commits and browse the sources.
  43. \subsubsection{The directory structure}
  44. There are four key directories in the base:
  45. \begin{itemize}
  46. \item \texttt{tools}
  47. \item \texttt{toolchain}
  48. \item \texttt{package}
  49. \item \texttt{target}
  50. \end{itemize}
  51. \texttt{tools} and \texttt{toolchain} refer to common tools which will be
  52. used to build the firmware image, the compiler, and the c library.
  53. The result of this is three new directories, \texttt{tool\_build}, which is a temporary
  54. directory for building the target independent tools, \texttt{toolchain\_build\_\textit{<arch>}}
  55. which is used for building the toolchain for a specific architecture, and
  56. \texttt{staging\_dir\_\textit{<arch>}} where the resulting toolchain is installed.
  57. You won't need to do anything with the toolchain directory unless you intend to
  58. add a new version of one of the components above.
  59. \begin{itemize}
  60. \item \texttt{tool\_build}
  61. \item \texttt{toolchain\_build\_\textit{<arch>}}
  62. \end{itemize}
  63. \texttt{package} is for exactly that -- packages. In an OpenWrt firmware, almost everything
  64. is an \texttt{.ipk}, a software package which can be added to the firmware to provide new
  65. features or removed to save space. Note that packages are also maintained outside of the main
  66. trunk and can be obtained from subversion at the following location:
  67. \begin{Verbatim}
  68. $ svn co https://svn.openwrt.org/openwrt/packages ../packages
  69. \end{Verbatim}
  70. Those packages can be used to extend the functionality of the build system and need to be
  71. symlinked into the main trunk. Once you do that, the packages will show up in the menu for
  72. configuration. From kamikaze you would do something like this:
  73. \begin{Verbatim}
  74. $ ls
  75. kamikaze packages
  76. $ ln -s packages/net/nmap kamikaze/package/nmap
  77. \end{Verbatim}
  78. \texttt{target} refers to the embedded platform, this contains items which are specific to
  79. a specific embedded platform. Of particular interest here is the "\texttt{target/linux}"
  80. directory which is broken down by platform and contains the kernel config and patches
  81. to the kernel for a particular platform. There's also the "\texttt{target/image}" directory
  82. which describes how to package a firmware for a specific platform.
  83. Both the target and package steps will use the directory "\texttt{build\_\textit{<arch>}}"
  84. as a temporary directory for compiling. Additionally, anything downloaded by the toolchain,
  85. target or package steps will be placed in the "\texttt{dl}" directory.
  86. \begin{itemize}
  87. \item \texttt{build\_\textit{<arch>}}
  88. \item \texttt{dl}
  89. \end{itemize}
  90. \subsubsection{Building OpenWrt}
  91. While the OpenWrt build environment was intended mostly for developers, it also has to be
  92. simple enough that an inexperienced end user can easily build his or her own customized firmware.
  93. Running the command "\texttt{make menuconfig}" will bring up OpenWrt's configuration menu
  94. screen, through this menu you can select which platform you're targeting, which versions of
  95. the toolchain you want to use to build and what packages you want to install into the
  96. firmware image. Note that it will also check to make sure you have the basic dependencies for it
  97. to run correctly. If that fails, you will need to install some more tools in your local environment
  98. before you can begin.
  99. Similar to the linux kernel config, almost every option has three choices,
  100. \texttt{y/m/n} which are represented as follows:
  101. \begin{itemize}
  102. \item{\texttt{<*>} (pressing y)} \\
  103. This will be included in the firmware image
  104. \item{\texttt{<M>} (pressing m)} \\
  105. This will be compiled but not included (for later install)
  106. \item{\texttt{< >} (pressing n)} \\
  107. This will not be compiled
  108. \end{itemize}
  109. After you've finished with the menu configuration, exit and when prompted, save your
  110. configuration changes. To begin compiling the firmware, type "\texttt{make}". By default
  111. OpenWrt will only display a high level overview of the compile process and not each individual
  112. command.
  113. \subsubsection{Example:}
  114. \begin{Verbatim}
  115. make[2] toolchain/install
  116. make[3] -C toolchain install
  117. make[2] target/compile
  118. make[3] -C target compile
  119. make[4] -C target/utils prepare
  120. [...]
  121. \end{Verbatim}
  122. This makes it easier to monitor which step it's actually compiling and reduces the amount
  123. of noise caused by the compile output. To see the full output, run the command
  124. "\texttt{make V=99}".
  125. During the build process, buildroot will download all sources to the "\texttt{dl}"
  126. directory and will start patching and compiling them in the "\texttt{build\_\textit{<arch>}}"
  127. directory. When finished, the resulting firmware will be in the "\texttt{bin}" directory
  128. and packages will be in the "\texttt{bin/packages}" directory.
  129. \subsection{Creating packages}
  130. One of the things that we've attempted to do with OpenWrt's template system is make it
  131. incredibly easy to port software to OpenWrt. If you look at a typical package directory
  132. in OpenWrt you'll find two things:
  133. \begin{itemize}
  134. \item \texttt{package/\textit{<name>}/Makefile}
  135. \item \texttt{package/\textit{<name>}/patches}
  136. \end{itemize}
  137. The patches directory is optional and typically contains bug fixes or optimizations to
  138. reduce the size of the executable. The package makefile is the important item, provides
  139. the steps actually needed to download and compile the package.
  140. Looking at one of the package makefiles, you'd hardly recognize it as a makefile.
  141. Through what can only be described as blatant disregard and abuse of the traditional
  142. make format, the makefile has been transformed into an object oriented template which
  143. simplifies the entire ordeal.
  144. Here for example, is \texttt{package/bridge/Makefile}:
  145. \begin{Verbatim}[frame=single,numbers=left]
  146. #
  147. # Copyright (C) 2006 OpenWrt.org
  148. #
  149. # This is free software, licensed under the GNU General Public License v2.
  150. # See /LICENSE for more information.
  151. #
  152. # $Id: Makefile 5624 2006-11-23 00:29:07Z nbd $
  153. include $(TOPDIR)/rules.mk
  154. PKG_NAME:=bridge
  155. PKG_VERSION:=1.0.6
  156. PKG_RELEASE:=1
  157. PKG_SOURCE:=bridge-utils-$(PKG_VERSION).tar.gz
  158. PKG_SOURCE_URL:=@SF/bridge
  159. PKG_MD5SUM:=9b7dc52656f5cbec846a7ba3299f73bd
  160. PKG_CAT:=zcat
  161. PKG_BUILD_DIR:=$(BUILD_DIR)/bridge-utils-$(PKG_VERSION)
  162. include $(INCLUDE_DIR)/package.mk
  163. define Package/bridge
  164. SECTION:=net
  165. CATEGORY:=Base system
  166. TITLE:=Ethernet bridging configuration utility
  167. DESCRIPTION:=\
  168. Manage ethernet bridging: a way to connect networks together to \\\
  169. form a larger network.
  170. URL:=http://bridge.sourceforge.net/
  171. endef
  172. define Build/Configure
  173. $(call Build/Configure/Default, \
  174. --with-linux-headers="$(LINUX_DIR)" \
  175. )
  176. endef
  177. define Package/bridge/install
  178. $(INSTALL_DIR) $(1)/usr/sbin
  179. $(INSTALL_BIN) $(PKG_BUILD_DIR)/brctl/brctl $(1)/usr/sbin/
  180. endef
  181. $(eval $(call BuildPackage,bridge))
  182. \end{Verbatim}
  183. As you can see, there's not much work to be done; everything is hidden in other makefiles
  184. and abstracted to the point where you only need to specify a few variables.
  185. \begin{itemize}
  186. \item \texttt{PKG\_NAME} \\
  187. The name of the package, as seen via menuconfig and ipkg
  188. \item \texttt{PKG\_VERSION} \\
  189. The upstream version number that we're downloading
  190. \item \texttt{PKG\_RELEASE} \\
  191. The version of this package Makefile
  192. \item \texttt{PKG\_SOURCE} \\
  193. The filename of the original sources
  194. \item \texttt{PKG\_SOURCE\_URL} \\
  195. Where to download the sources from (no trailing slash)
  196. \item \texttt{PKG\_MD5SUM} \\
  197. A checksum to validate the download
  198. \item \texttt{PKG\_CAT} \\
  199. How to decompress the sources (zcat, bzcat, unzip)
  200. \item \texttt{PKG\_BUILD\_DIR} \\
  201. Where to compile the package
  202. \end{itemize}
  203. The \texttt{PKG\_*} variables define where to download the package from;
  204. \texttt{@SF} is a special keyword for downloading packages from sourceforge. There is also
  205. another keyword of \texttt{@GNU} for grabbing GNU source releases.
  206. The md5sum is used to verify the package was downloaded correctly and
  207. \texttt{PKG\_BUILD\_DIR} defines where to find the package after the sources are
  208. uncompressed into \texttt{\$(BUILD\_DIR)}.
  209. At the bottom of the file is where the real magic happens, "BuildPackage" is a macro
  210. set up by the earlier include statements. BuildPackage only takes one argument directly --
  211. the name of the package to be built, in this case "\texttt{bridge}". All other information
  212. is taken from the define blocks. This is a way of providing a level of verbosity, it's
  213. inherently clear what the contents of the \texttt{description} template in
  214. \texttt{Package/bridge} is, which wouldn't be the case if we passed this information
  215. directly as the Nth argument to \texttt{BuildPackage}.
  216. \texttt{BuildPackage} uses the following defines:
  217. \textbf{\texttt{Package/\textit{<name>}}:} \\
  218. \texttt{\textit{<name>}} matches the argument passed to buildroot, this describes
  219. the package the menuconfig and ipkg entries. Within \texttt{Package/\textit{<name>}}
  220. you can define the following variables:
  221. \begin{itemize}
  222. \item \texttt{SECTION} \\
  223. The type of package (currently unused)
  224. \item \texttt{CATEGORY} \\
  225. Which menu it appears in menuconfig
  226. \item \texttt{TITLE} \\
  227. A short description of the package
  228. \item \texttt{URL} \\
  229. Where to find the original software
  230. \item \texttt{MAINTAINER} (optional) \\
  231. Who to contact concerning the package
  232. \item \texttt{DEPENDS} (optional) \\
  233. Which packages must be built/installed before this package
  234. \end{itemize}
  235. \textbf{\texttt{Package/\textit{<name>}/conffiles} (optional):} \\
  236. A list of config files installed by this package, one file per line.
  237. \textbf{\texttt{Build/Prepare} (optional):} \\
  238. A set of commands to unpack and patch the sources. You may safely leave this
  239. undefined.
  240. \textbf{\texttt{Build/Configure} (optional):} \\
  241. You can leave this undefined if the source doesn't use configure or has a
  242. normal config script, otherwise you can put your own commands here or use
  243. "\texttt{\$(call Build/Configure/Default,\textit{<args>})}" as above to
  244. pass in additional arguments for a standard configure script.
  245. \textbf{\texttt{Build/Compile} (optional):} \\
  246. How to compile the source; in most cases you should leave this undefined.
  247. \textbf{\texttt{Package/\textit{<name>}/install}:} \\
  248. A set of commands to copy files out of the compiled source and into the ipkg
  249. which is represented by the \texttt{\$(1)} directory. Note that there are currently
  250. 3 defined install macros:
  251. \begin{itemize}
  252. \item \texttt{INSTALL\_DIR} \\
  253. install -d -m0755
  254. \item \texttt{INSTALL\_BIN} \\
  255. install -m0755
  256. \item \texttt{INSTALL\_DATA} \\
  257. install -m0644
  258. \end{itemize}
  259. The reason that some of the defines are prefixed by "\texttt{Package/\textit{<name>}}"
  260. and others are simply "\texttt{Build}" is because of the possibility of generating
  261. multiple packages from a single source. OpenWrt works under the assumption of one
  262. source per package Makefile, but you can split that source into as many packages as
  263. desired. Since you only need to compile the sources once, there's one global set of
  264. "\texttt{Build}" defines, but you can add as many "Package/<name>" defines as you want
  265. by adding extra calls to \texttt{BuildPackage} -- see the dropbear package for an example.
  266. After you've created your \texttt{package/\textit{<name>}/Makefile}, the new package
  267. will automatically show in the menu the next time you run "make menuconfig" and if selected
  268. will be built automatically the next time "\texttt{make}" is run.
  269. \subsection{Conventions}
  270. There are a couple conventions to follow regarding packages:
  271. \begin{itemize}
  272. \item \texttt{files}
  273. \begin{enumerate}
  274. \item configuration files follow the convention \\
  275. \texttt{\textit{<name>}.conf}
  276. \item init files follow the convention \\
  277. \texttt{\textit{<name>}.init}
  278. \end{enumerate}
  279. \item \texttt{patches}
  280. \begin{enumerate}
  281. \item patches are numerically prefixed and named related to what they do
  282. \end{enumerate}
  283. \end{itemize}
  284. \subsection{Troubleshooting}
  285. If you find your package doesn't show up in menuconfig, try the following command to
  286. see if you get the correct description:
  287. \begin{Verbatim}
  288. TOPDIR=$PWD make -C package/<name> DUMP=1 V=99
  289. \end{Verbatim}
  290. If you're just having trouble getting your package to compile, there's a few
  291. shortcuts you can take. Instead of waiting for make to get to your package, you can
  292. run one of the following:
  293. \begin{itemize}
  294. \item \texttt{make package/\textit{<name>}-clean V=99}
  295. \item \texttt{make package/\textit{<name>}-install V=99}
  296. \end{itemize}
  297. Another nice trick is that if the source directory under \texttt{build\_\textit{<arch>}}
  298. is newer than the package directory, it won't clobber it by unpacking the sources again.
  299. If you were working on a patch you could simply edit the sources under the
  300. \texttt{build\_\textit{<arch>}/\textit{<source>}} directory and run the install command above,
  301. when satisfied, copy the patched sources elsewhere and diff them with the unpatched
  302. sources. A warning though - if you go modify anything under \texttt{package/\textit{<name>}}
  303. it will remove the old sources and unpack a fresh copy.
  304. Other useful targets include:
  305. \begin{itemize}
  306. \item \texttt{make package/\textit{<name>}-prepare V=99}
  307. \item \texttt{make package/\textit{<name>}-compile V=99}
  308. \item \texttt{make package/\textit{<name>}-configure V=99}
  309. \end{itemize}