Burrow Raspberry Pi Image
 
 
 
Go to file
Yossi 657944a9a3 Merge remote-tracking branch 'origin/dev' into dev
# Conflicts:
#	.gitignore
#	stage2/04-cleanup/00-run.sh
#	stage2/EXPORT_NOOBS
#	stage4/00-install-packages/00-debconf
#	stage4/00-install-packages/00-packages
#	stage4/00-install-packages/00-packages-nr
#	stage4/EXPORT_IMAGE
2017-04-05 11:09:02 +03:00
export-image Clean up clean up 2017-04-03 16:01:13 +01:00
export-noobs export-noobs: replace all spaces with underscores in OS icon file 2017-04-03 16:39:20 +01:00
scripts Clean up clean up 2017-04-03 16:01:13 +01:00
stage0 Use capsh to ensure file capabilities aren't set 2016-11-14 23:55:45 +00:00
stage1 config.txt: update documentation URL 2017-03-13 17:46:14 +00:00
stage2 Merge remote-tracking branch 'RPi-Distro/dev' into dev 2017-04-05 11:04:00 +03:00
stage4 Merge remote-tracking branch 'RPi-Distro/dev' into dev 2017-04-05 11:04:00 +03:00
stage5 Add a 4GB image 2017-04-03 16:01:13 +01:00
.dockerignore Added Docker support (#40) 2017-01-23 12:44:03 +00:00
.gitignore build.sh: execute postrun.sh, if executable 2017-03-13 17:44:31 +00:00
Dockerfile Added Docker support (#40) 2017-01-23 12:44:03 +00:00
License.md Create License.md 2016-09-14 01:29:07 +10:00
README.md Merge remote-tracking branch 'origin/dev' into dev 2017-04-05 11:09:02 +03:00
build-docker.sh Added Docker support (#40) 2017-01-23 12:44:03 +00:00
build.sh Updated {i}-run-chroot script filename to match {i}-run.sh format 2017-03-20 15:53:55 +01:00
config Add config OS name 2017-01-22 20:54:10 +02:00
depends Added Docker support (#40) 2017-01-23 12:44:03 +00:00

README.md

#Dependencies

quilt kpartx realpath qemu-user-static debootstrap zerofree pxz zip dosfstools bsdtar libcap2-bin

#Stage Anatomy

drideOS (Raspbian) Stage Overview

The build of Raspbian is divided up into several stages for logical clarity and modularity. This causes some initial complexity, but it simplifies maintenance and allows for more easy customization.

  • Stage 0, bootstrap. The primary purpose of this stage is to create a usable filesystem. This is accomplished largely through the use of debootstrap, which creates a minimal filesystem suitable for use as a base.tgz on Debian systems. This stage also configures apt settings and installs raspberrypi-bootloader which is missed by debootstrap. The minimal core is installed but not configured, and the system will not quite boot yet.

  • Stage 1, truly minimal system. This stage makes the system bootable by installing system files like /etc/fstab, configures the bootloader, makes the network operable, and installs packages like raspi-config. At this stage the system should boot to a local console from which you have the means to perform basic tasks needed to configure and install the system. This is as minimal as a system can possibly get, and its arguably not really usable yet in a traditional sense yet. Still, if you want minimal, this is minimal and the rest you could reasonably do yourself as sysadmin.

  • State 2, lite system. This stage produces the Raspbian-Lite image. It installs some optimized memory functions, sets timezone and charmap defaults, installs fake-hwclock and ntp, wifi and bluetooth support, dphys-swapfile, and other basics for managing the hardware. It also creates necessary groups and gives the pi user access to sudo and the standard console hardware permission groups.

  • Stage 3, Install Dride related softwere.