You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 14 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. # pi-gen
  2. _Tool used to create the raspberrypi.org Raspbian images_
  3. ## Dependencies
  4. pi-gen runs on Debian based operating systems. Currently it is only supported on
  5. either Debian Buster or Ubuntu Xenial and is known to have issues building on
  6. earlier releases of these systems. On other Linux distributions it may be possible
  7. to use the Docker build described below.
  8. To install the required dependencies for pi-gen you should run:
  9. ```bash
  10. apt-get install coreutils quilt parted qemu-user-static debootstrap zerofree zip \
  11. dosfstools bsdtar libcap2-bin grep rsync xz-utils file git curl bc
  12. ```
  13. The file `depends` contains a list of tools needed. The format of this
  14. package is `<tool>[:<debian-package>]`.
  15. ## Config
  16. Upon execution, `build.sh` will source the file `config` in the current
  17. working directory. This bash shell fragment is intended to set needed
  18. environment variables.
  19. The following environment variables are supported:
  20. * `IMG_NAME` **required** (Default: unset)
  21. The name of the image to build with the current stage directories. Setting
  22. `IMG_NAME=Raspbian` is logical for an unmodified RPi-Distro/pi-gen build,
  23. but you should use something else for a customized version. Export files
  24. in stages may add suffixes to `IMG_NAME`.
  25. * `RELEASE` (Default: buster)
  26. The release version to build images against. Valid values are jessie, stretch
  27. buster, bullseye, and testing.
  28. * `APT_PROXY` (Default: unset)
  29. If you require the use of an apt proxy, set it here. This proxy setting
  30. will not be included in the image, making it safe to use an `apt-cacher` or
  31. similar package for development.
  32. If you have Docker installed, you can set up a local apt caching proxy to
  33. like speed up subsequent builds like this:
  34. docker-compose up -d
  35. echo 'APT_PROXY=http://172.17.0.1:3142' >> config
  36. * `BASE_DIR` (Default: location of `build.sh`)
  37. **CAUTION**: Currently, changing this value will probably break build.sh
  38. Top-level directory for `pi-gen`. Contains stage directories, build
  39. scripts, and by default both work and deployment directories.
  40. * `WORK_DIR` (Default: `"$BASE_DIR/work"`)
  41. Directory in which `pi-gen` builds the target system. This value can be
  42. changed if you have a suitably large, fast storage location for stages to
  43. be built and cached. Note, `WORK_DIR` stores a complete copy of the target
  44. system for each build stage, amounting to tens of gigabytes in the case of
  45. Raspbian.
  46. **CAUTION**: If your working directory is on an NTFS partition you probably won't be able to build. Make sure this is a proper Linux filesystem.
  47. * `DEPLOY_DIR` (Default: `"$BASE_DIR/deploy"`)
  48. Output directory for target system images and NOOBS bundles.
  49. * `DEPLOY_ZIP` (Default: `1`)
  50. Setting to `0` will deploy the actual image (`.img`) instead of a zipped image (`.zip`).
  51. * `USE_QEMU` (Default: `"0"`)
  52. Setting to '1' enables the QEMU mode - creating an image that can be mounted via QEMU for an emulated
  53. environment. These images include "-qemu" in the image file name.
  54. * `LOCALE_DEFAULT` (Default: "en_GB.UTF-8" )
  55. Default system locale.
  56. * `TARGET_HOSTNAME` (Default: "raspberrypi" )
  57. Setting the hostname to the specified value.
  58. * `KEYBOARD_KEYMAP` (Default: "gb" )
  59. Default keyboard keymap.
  60. To get the current value from a running system, run `debconf-show
  61. keyboard-configuration` and look at the
  62. `keyboard-configuration/xkb-keymap` value.
  63. * `KEYBOARD_LAYOUT` (Default: "English (UK)" )
  64. Default keyboard layout.
  65. To get the current value from a running system, run `debconf-show
  66. keyboard-configuration` and look at the
  67. `keyboard-configuration/variant` value.
  68. * `TIMEZONE_DEFAULT` (Default: "Europe/London" )
  69. Default keyboard layout.
  70. To get the current value from a running system, look in
  71. `/etc/timezone`.
  72. * `FIRST_USER_NAME` (Default: "pi" )
  73. Username for the first user
  74. * `FIRST_USER_PASS` (Default: "raspberry")
  75. Password for the first user
  76. * `WPA_ESSID`, `WPA_PASSWORD` and `WPA_COUNTRY` (Default: unset)
  77. If these are set, they are use to configure `wpa_supplicant.conf`, so that the Raspberry Pi can automatically connect to a wifi network on first boot. If `WPA_ESSID` is set and `WPA_PASSWORD` is unset an unprotected wifi network will be configured. If set, `WPA_PASSWORD` must be between 8 and 63 characters.
  78. * `ENABLE_SSH` (Default: `0`)
  79. Setting to `1` will enable ssh server for remote log in. Note that if you are using a common password such as the defaults there is a high risk of attackers taking over you Raspberry Pi.
  80. * `STAGE_LIST` (Default: `stage*`)
  81. If set, then instead of working through the numeric stages in order, this list will be followed. For example setting to `"stage0 stage1 mystage stage2"` will run the contents of `mystage` before stage2. Note that quotes are needed around the list. An absolute or relative path can be given for stages outside the pi-gen directory.
  82. A simple example for building Raspbian:
  83. ```bash
  84. IMG_NAME='Raspbian'
  85. ```
  86. The config file can also be specified on the command line as an argument the `build.sh` or `build-docker.sh` scripts.
  87. ```
  88. ./build.sh -c myconfig
  89. ```
  90. This is parsed after `config` so can be used to override values set there.
  91. ## How the build process works
  92. The following process is followed to build images:
  93. * Loop through all of the stage directories in alphanumeric order
  94. * Move on to the next directory if this stage directory contains a file called
  95. "SKIP"
  96. * Run the script ```prerun.sh``` which is generally just used to copy the build
  97. directory between stages.
  98. * In each stage directory loop through each subdirectory and then run each of the
  99. install scripts it contains, again in alphanumeric order. These need to be named
  100. with a two digit padded number at the beginning.
  101. There are a number of different files and directories which can be used to
  102. control different parts of the build process:
  103. - **00-run.sh** - A unix shell script. Needs to be made executable for it to run.
  104. - **00-run-chroot.sh** - A unix shell script which will be run in the chroot
  105. of the image build directory. Needs to be made executable for it to run.
  106. - **00-debconf** - Contents of this file are passed to debconf-set-selections
  107. to configure things like locale, etc.
  108. - **00-packages** - A list of packages to install. Can have more than one, space
  109. separated, per line.
  110. - **00-packages-nr** - As 00-packages, except these will be installed using
  111. the ```--no-install-recommends -y``` parameters to apt-get.
  112. - **00-patches** - A directory containing patch files to be applied, using quilt.
  113. If a file named 'EDIT' is present in the directory, the build process will
  114. be interrupted with a bash session, allowing an opportunity to create/revise
  115. the patches.
  116. * If the stage directory contains files called "EXPORT_NOOBS" or "EXPORT_IMAGE" then
  117. add this stage to a list of images to generate
  118. * Generate the images for any stages that have specified them
  119. It is recommended to examine build.sh for finer details.
  120. ## Docker Build
  121. Docker can be used to perform the build inside a container. This partially isolates
  122. the build from the host system, and allows using the script on non-debian based
  123. systems (e.g. Fedora Linux). The isolate is not complete due to the need to use
  124. some kernel level services for arm emulation (binfmt) and loop devices (losetup).
  125. To build:
  126. ```bash
  127. vi config # Edit your config file. See above.
  128. ./build-docker.sh
  129. ```
  130. If everything goes well, your finished image will be in the `deploy/` folder.
  131. You can then remove the build container with `docker rm -v pigen_work`
  132. If something breaks along the line, you can edit the corresponding scripts, and
  133. continue:
  134. ```bash
  135. CONTINUE=1 ./build-docker.sh
  136. ```
  137. To examine the container after a failure you can enter a shell within it using:
  138. ```bash
  139. sudo docker run -it --privileged --volumes-from=pigen_work pi-gen /bin/bash
  140. ```
  141. After successful build, the build container is by default removed. This may be undesired when making incremental changes to a customized build. To prevent the build script from remove the container add
  142. ```bash
  143. PRESERVE_CONTAINER=1 ./build-docker.sh
  144. ```
  145. There is a possibility that even when running from a docker container, the
  146. installation of `qemu-user-static` will silently fail when building the image
  147. because `binfmt-support` _must be enabled on the underlying kernel_. An easy
  148. fix is to ensure `binfmt-support` is installed on the host machine before
  149. starting the `./build-docker.sh` script (or using your own docker build
  150. solution).
  151. ## Stage Anatomy
  152. ### Raspbian Stage Overview
  153. The build of Raspbian is divided up into several stages for logical clarity
  154. and modularity. This causes some initial complexity, but it simplifies
  155. maintenance and allows for more easy customization.
  156. - **Stage 0** - bootstrap. The primary purpose of this stage is to create a
  157. usable filesystem. This is accomplished largely through the use of
  158. `debootstrap`, which creates a minimal filesystem suitable for use as a
  159. base.tgz on Debian systems. This stage also configures apt settings and
  160. installs `raspberrypi-bootloader` which is missed by debootstrap. The
  161. minimal core is installed but not configured, and the system will not quite
  162. boot yet.
  163. - **Stage 1** - truly minimal system. This stage makes the system bootable by
  164. installing system files like `/etc/fstab`, configures the bootloader, makes
  165. the network operable, and installs packages like raspi-config. At this
  166. stage the system should boot to a local console from which you have the
  167. means to perform basic tasks needed to configure and install the system.
  168. This is as minimal as a system can possibly get, and its arguably not
  169. really usable yet in a traditional sense yet. Still, if you want minimal,
  170. this is minimal and the rest you could reasonably do yourself as sysadmin.
  171. - **Stage 2** - lite system. This stage produces the Raspbian-Lite image. It
  172. installs some optimized memory functions, sets timezone and charmap
  173. defaults, installs fake-hwclock and ntp, wifi and bluetooth support,
  174. dphys-swapfile, and other basics for managing the hardware. It also
  175. creates necessary groups and gives the pi user access to sudo and the
  176. standard console hardware permission groups.
  177. There are a few tools that may not make a whole lot of sense here for
  178. development purposes on a minimal system such as basic Python and Lua
  179. packages as well as the `build-essential` package. They are lumped right
  180. in with more essential packages presently, though they need not be with
  181. pi-gen. These are understandable for Raspbian's target audience, but if
  182. you were looking for something between truly minimal and Raspbian-Lite,
  183. here's where you start trimming.
  184. - **Stage 3** - desktop system. Here's where you get the full desktop system
  185. with X11 and LXDE, web browsers, git for development, Raspbian custom UI
  186. enhancements, etc. This is a base desktop system, with some development
  187. tools installed.
  188. - **Stage 4** - Normal Raspbian image. System meant to fit on a 4GB card. This is the
  189. stage that installs most things that make Raspbian friendly to new
  190. users like system documentation.
  191. - **Stage 5** - The Raspbian Full image. More development
  192. tools, an email client, learning tools like Scratch, specialized packages
  193. like sonic-pi, office productivity, etc.
  194. ### Stage specification
  195. If you wish to build up to a specified stage (such as building up to stage 2
  196. for a lite system), place an empty file named `SKIP` in each of the `./stage`
  197. directories you wish not to include.
  198. Then add an empty file named `SKIP_IMAGES` to `./stage4` and `./stage5` (if building up to stage 2) or
  199. to `./stage2` (if building a minimal system).
  200. ```bash
  201. # Example for building a lite system
  202. echo "IMG_NAME='Raspbian'" > config
  203. touch ./stage3/SKIP ./stage4/SKIP ./stage5/SKIP
  204. touch ./stage4/SKIP_IMAGES ./stage5/SKIP_IMAGES
  205. sudo ./build.sh # or ./build-docker.sh
  206. ```
  207. If you wish to build further configurations upon (for example) the lite
  208. system, you can also delete the contents of `./stage3` and `./stage4` and
  209. replace with your own contents in the same format.
  210. ## Skipping stages to speed up development
  211. If you're working on a specific stage the recommended development process is as
  212. follows:
  213. * Add a file called SKIP_IMAGES into the directories containing EXPORT_* files
  214. (currently stage2, stage4 and stage5)
  215. * Add SKIP files to the stages you don't want to build. For example, if you're
  216. basing your image on the lite image you would add these to stages 3, 4 and 5.
  217. * Run build.sh to build all stages
  218. * Add SKIP files to the earlier successfully built stages
  219. * Modify the last stage
  220. * Rebuild just the last stage using ```sudo CLEAN=1 ./build.sh```
  221. * Once you're happy with the image you can remove the SKIP_IMAGES files and
  222. export your image to test
  223. # Troubleshooting
  224. ## `64 Bit Systems`
  225. Please note there is currently an issue when compiling with a 64 Bit OS. See https://github.com/RPi-Distro/pi-gen/issues/271
  226. ## `binfmt_misc`
  227. Linux is able execute binaries from other architectures, meaning that it should be
  228. possible to make use of `pi-gen` on an x86_64 system, even though it will be running
  229. ARM binaries. This requires support from the [`binfmt_misc`](https://en.wikipedia.org/wiki/Binfmt_misc)
  230. kernel module.
  231. You may see the following error:
  232. ```
  233. update-binfmts: warning: Couldn't load the binfmt_misc module.
  234. ```
  235. To resolve this, ensure that the following files are available (install them if necessary):
  236. ```
  237. /lib/modules/$(uname -r)/kernel/fs/binfmt_misc.ko
  238. /usr/bin/qemu-arm-static
  239. ```
  240. You may also need to load the module by hand - run `modprobe binfmt_misc`.