[Update June 28: Post updated with correct procedure thanks to Collabora help]
Armbian provides lightweight Debian or Ubuntu images for various Arm Linux SBC, and over the years has become the recommended source for stable firmware images for boards part of Orange Pi & Banana Pi families, and others.
Uncompressed images are still over 1GB and come with Armbian-specific tools, kernel and bootloader. If you’d like to leverage Armbian images, but instead create a Debian upstream image with only the packages you intend to use, Collabora explains how to do just that with Orange Pi Zero +2 H5 and Libre Computer AML-S905X-CC (aka Le Potato) boards using Debos Debian OS builder.
I’ve decided to give a try at the instructions for Orange Pi Zero Plus2 H5 in my laptop running Ubuntu 18.04 to better understand how this all works.
I’ll assume you’ve already installed Docker, and made sure you’ve got it working as a non-root user, so we can install Debos as follows:
1 |
docker pull godebos/debos |
Configuration for Debos is made through a YAML files. Collabora has already provided such file for Orange Pi Zero 2+ board: orangepi0p2.yaml. You’ll need to modify it to your version of Armbian as I did below. Note getting the latest version number for Armbian is critical, or the script will fail with something like:
1 2 3 |
2019/06/28 09:30:44 ==== raw ==== 2019/06/28 09:30:44 Action <code>raw</code> failed at stage Run, error: Failed to read /scratch/mnt/usr/lib/linux-u-boot-next-orangepizeroplus2-h5_5.83_arm64/sunxi-spl.bin Powering off. |
I’ve also added comments explaining a bit more about each sections:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# Base recipe for minimal Debian SID ARM64 image architecture: arm64 actions: - action: debootstrap suite: sid components: - main mirror: https://deb.debian.org/debian variant: minbase - action: apt packages: [ sudo, adduser, systemd-sysv, initramfs-tools, u-boot-tools, u-boot-menu, util-linux ] - action: run chroot: true command: echo debian-sid-arm64 > /etc/hostname - action: run chroot: true command: echo "127.0.1.1\tdebian-sid-arm64" >> /etc/hosts - action: overlay source: overlays/etc destination: /etc - action: run chroot: true script: scripts/setup-user.sh # End of base recipe for minimal Debian SID ARM64 image # Add armbian repository - action: overlay source: overlays/armbian # Get Linux kernel and U-boot from Armbian repository - action: apt packages: [ linux-image-next-sunxi64, linux-dtb-next-sunxi64, linux-u-boot-orangepizeroplus2-h5-next ] # Create the (rootfs) partitions - action: image-partition imagename: debian-sid-arm64.img imagesize: 1GB partitiontype: msdos mountpoints: - mountpoint: / partition: root partitions: - name: root fs: ext4 start: 2MB end: 100% flags: [ boot ] # Deploy the filesystem to an image - action: filesystem-deploy description: Deploying filesystem onto image # U-boot-menu expects FDT directory name to include the kernel version as # returned by linux-version. - action: run chroot: true command: ln -s linux-image-next-sunxi64 /usr/lib/linux-image-$(linux-version list) # Update U-Boot menu after creation of image partitions and filesystem # deployment to get correct root information from /etc/fstab - action: run description: Update U-Boot menu chroot: true command: u-boot-update # Install Install uboot in our image. # Armbian encode a version number in path to u-boot binaries, 5.85 at time I write this blog, this may need to be changed - action: raw origin: filesystem source: /usr/lib/linux-u-boot-next-orangepizeroplus2-h5_5.85_arm64/sunxi-spl.bin offset: 8192 # bs=8k seek=1 - action: raw origin: filesystem source: /usr/lib/linux-u-boot-next-orangepizeroplus2-h5_5.83_arm64/u-boot.itb offset: 40960 # bs=8k seek=5 # Create block map file - action: run description: Create block map file postprocess: true command: bmaptool create debian-sid-arm64.img > debian-sid-arm64.img.bmap #Compress final image - action: run description: Compressing final image postprocess: true command: gzip -f debian-sid-arm64.img |
The next command requires KVM for QEMU, and we should run it as normal user:
1 |
sudo usermod -aG kvm $USER |
Logout and login again. Now in theory this command should create our image:
1 |
docker run --rm --interactive --tty --device /dev/kvm --user $(id -u) --workdir /recipes --mount "type=bind,source=$(pwd),destination=/recipes" --security-opt label=disable godebos/debos orangepi0p2.yaml |
But sadly, I’ve run into permissions errors, I’ve been unable to fix after a couple of hours:
1 2 3 |
Could not access KVM kernel module: Permission denied qemu-system-x86_64: failed to initialize KVM: Permission denied open /tmp/fakemachine-048715194/result: no such file or directory |
My username is part of kvm and docker groups:
1 2 |
groups jaufranc adm dialout cdrom sudo dip plugdev lpadmin sambashare vboxusers docker kvm libvirt |
and the KVM modules are indeed loaded:
1 2 3 4 5 |
lsmod | grep kvm kvm_amd 94208 0 ccp 86016 1 kvm_amd kvm 634880 1 kvm_amd irqbypass 16384 1 kvm |
I got stuck here, but with Frédéric Danis’ help (see comments below), I could solve the permission issue:
1 2 3 |
docker run --rm --interactive --tty --device /dev/kvm --group-add $(getent group kvm | cut -d: -f3) --user $(id -u) --workdir /recipes --mount "type=bind,source=$(pwd),destination=/recipes" --security-opt label=disable godebos/debos orangepi0p2.yaml qemu-system-x86_64: -virtfs local,mount_tag=virtfs-5,path=/recipes/scripts,security_model=none: cannot initialize fsdev 'virtfs-5': failed to open '/recipes/scripts': No such file or directory open /tmp/fakemachine-686249639/result: no such file or directory |
The /recipes/scripts directory is however missing, and that’s because I wrongly assume debos would just need to be feed the yaml file. Instead we also need to get scripts and overlays directories from gitlab, and copy our updated yaml file into debos-armbian2debian/1-ArmbianKernel directory:
1 2 |
git clone https://gitlab.collabora.com/fdanis/debos-armbian2debian/ cp orangepi0p2.yaml debos-armbian2debian/1-ArmbianKernel |
Now we can enter the directory, and run the previous command to generate the minimal image:
1 |
docker run --rm --interactive --tty --device /dev/kvm --group-add $(getent group kvm | cut -d: -f3) --user $(id -u) --workdir /recipes --mount "type=bind,source=$(pwd),destination=/recipes" --security-opt label=disable godebos/debos orangepi0p2.yaml |
After a few minutes, the image should be generated:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
2019/06/28 14:25:45 ==== Deploying filesystem onto image ==== 2019/06/28 14:25:47 Setting up fstab 2019/06/28 14:25:47 Setting up /etc/kernel/cmdline 2019/06/28 14:25:47 ==== run ==== 2019/06/28 14:25:48 ==== Update U-Boot menu ==== 2019/06/28 14:25:48 u-boot-update | P: Checking for EXTLINUX directory... found. 2019/06/28 14:25:49 u-boot-update | P: Writing config for vmlinuz-4.19.38-sunxi64... 2019/06/28 14:25:49 u-boot-update | P: Updating /boot/extlinux/extlinux.conf... 2019/06/28 14:25:49 ==== raw ==== 2019/06/28 14:25:49 ==== raw ==== Powering off. 2019/06/28 14:25:53 ==== Create block map file ==== 2019/06/28 14:25:57 ==== Compressing final image ==== 2019/06/28 14:26:19 ==== Recipe done ==== |
You’ll find it in the working directory:
1 2 |
ls -lh debian-sid-arm64.img.gz -rw-r--r-- 1 jaufranc root 111M มิ.ย. 28 21:25 debian-sid-arm64.img.gz |
Now you can flash the image to your SD card as follows:
1 2 |
$ DEV=/dev/your_sd_device $ sudo bmaptool copy --no-sig-verify --no-verify debian-sid-arm64.img.gz $DEV |
Jean-Luc started CNX Software in 2010 as a part-time endeavor, before quitting his job as a software engineering manager, and starting to write daily news, and reviews full time later in 2011.
Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress
> Uncompressed images are still over 1GB and come with Armbian-specific tools, kernel and bootloader. To save a lot of space for the uncompressed image with Armbian simply choose btrfs instead of ext4 at image creation time. You can also save additional space by using Armbian’s customization features and skip most of if not all packages referenced in the $PACKAGE_LIST_ADDITIONAL variable. And by skipping ‘Armbian-specific tools’ you choose both lower performance and less reliability. I really wonder whether those people obsessed by small image sizes and ‘Debian upstream’ ever did performance comparisons or checked what Armbian does to increase life… Read more »
I consider armbian to be the Ubuntu of the embedded SoCs. Is the center of the distros universe for many reasons. Nevertheless, I like to see other alternatives from time to time, because the more the better in terms of choices for different use cases. Also people learn by doing those things. So I’m glad seeing new stuff and people try to do whatever they like to do.
> I consider armbian to be the Ubuntu of the embedded SoCs. Is the center of the distros universe for many reasons. I couldn’t agree less since for me Armbian is not even a distro 🙂 It’s a flexible build system able to generate bootable Linux images from scratch in various flavors: 3 x Debian and 3 x Ubuntu. Majority of work deals with collecting and consolidating kernel patches (and as such Armbian is often months or even years ahead of ‘upstream Debian’ wrt hardware support for vast majority of interesting boards). The other important part is SBC specific tweaks… Read more »
You’re right! I’ve miss-used the word distro. Of course it’s a build system. I do the same mistake often for SBC and BSP. Since I’m building quite a lot of distros (I mean proper distros this time :p) for different architectures like ARM and x86, I’ve had to build distros that were a few MBs in size that the only thinks they did was just to run a single process in the initramfs, up to distros of 10ths of GBs that were running a huge application framework on top. This is why I’ve said there’s room for everything. Whatever the… Read more »
> Armbian … made from people that are aware of the embedded domain Don’t think so. Armbian’s origins are ‘energy efficient and inexpensive server stuff’… on ARM since ~5 years ago something like a Cubieboard, Cubietruck, CuBox i4 or a BananaPi seemed like an ideal choice for small servers due to ‘native SATA’ and so on while x86 offers were way more expensive and wasted a lot more energy. Project matured, in early 2016 we started to support H3 boards (most probably the biggest mistake in the project’s history) but still the focus was on server, NAS, now also Linux… Read more »
why h3 boards support was a mistake?
As tkaiser pointed out, if you want to get this “into the bushes” on making your own image, the Armbian build system supports doing just about anything you could hope for. And, skipping the Armbian utilities/bsp packages would be disastrous on several boards, and at the very least ill-advised on the rest.
Hi, I am Gustavo Padovan, from Collabora. Thanks for trying this out, most of the time our people are using Debian to run debos (I usually do it from Fedora). This issue is new to us, can you confirm that your user has access to /dev/kvm? A ‘ls /dev/kvm’ will tell us that.
I’m trying to understand where in the stack this bug is so I can work with the team here to fix this if it happens to be in debos itself. I’ll be happy if you can check that for us.
Thansks,
Gustavo
Hi,
Here’s the output:
The user (jaufranc) is part of kvm group, so it should have read/write access.
The user inside the container will need access to /dev/kvm, so it needs to be part of kvm group.
Could you try to add “–group-add $(getent group kvm | cut -d: -f3)” to docker command, i.e.
Thanks that did the trick for the permission issue, but there’s another problem: docker run --rm --interactive --tty --device /dev/kvm --group-add $(getent group kvm | cut -d: -f3) --user $(id -u) --workdir /recipes --mount "type=bind,source=$(pwd),destination=/recipes" --security-opt label=disable godebos/debos orangepi0p2.yaml qemu-system-x86_64: -virtfs local,mount_tag=virtfs-5,path=/recipes/scripts,security_model=none: cannot initialize fsdev 'virtfs-5': failed to open '/recipes/scripts': No such file or directory open /tmp/fakemachine-686249639/result: no such file or directory 123 docker run --rm --interactive --tty --device /dev/kvm --group-add $(getent group kvm | cut -d: -f3) --user $(id -u) --workdir /recipes --mount "type=bind,source=$(pwd),destination=/recipes" --security-opt label=disable godebos/debos orangepi0p2.yamlqemu-system-x86_64: -virtfs local,mount_tag=virtfs-5,path=/recipes/scripts,security_model=none: cannot initialize fsdev 'virtfs-5': failed to open '/recipes/scripts': No… Read more »
Do you have scripts and overlays directories in the orangepi0p2.yaml directory?
orangepi0p2.yaml relies on some scripts and overlays.
You can retrieve them from https://gitlab.collabora.com/fdanis/debos-armbian2debian/tree/master/1-ArmbianKernel
Oops. OK I missed that part. I through debos would just automatically retrieve anything it wanted. That works now. I’ll edit the post accordingly.
It did not complete successfully. 2019/06/28 09:30:43 ==== Update U-Boot menu ==== 2019/06/28 09:30:44 u-boot-update | P: Checking for EXTLINUX directory... found. 2019/06/28 09:30:44 u-boot-update | P: Writing config for vmlinuz-4.19.38-sunxi64... 2019/06/28 09:30:44 u-boot-update | P: Updating /boot/extlinux/extlinux.conf... 2019/06/28 09:30:44 ==== raw ==== 2019/06/28 09:30:44 Action <code>raw</code> failed at stage Run, error: Failed to read /scratch/mnt/usr/lib/linux-u-boot-next-orangepizeroplus2-h5_5.83_arm64/sunxi-spl.bin Powering off. 1234567 2019/06/28 09:30:43 ==== Update U-Boot menu ====2019/06/28 09:30:44 u-boot-update | P: Checking for EXTLINUX directory... found.2019/06/28 09:30:44 u-boot-update | P: Writing config for vmlinuz-4.19.38-sunxi64...2019/06/28 09:30:44 u-boot-update | P: Updating /boot/extlinux/extlinux.conf...2019/06/28 09:30:44 ==== raw ====2019/06/28 09:30:44 Action <code>raw</code> failed at stage Run,… Read more »
Armbian encode a version number in path to u-boot binaries, from your pastedbin the version currently installed is 5.85.
So, you should replace 5.83 by 5.85 in raw actions, lines 75 and 80 of your recipe.
Thank you. All good now!
Hi,
I’m not sure how exactly debos works in Docker, but to get it going on your Ubuntu you need to create empty files at the locations it expects (i.e. kernel modules). Ubuntu has those modules compiled into the kernel while Debian ships them as modules, and it seems debos at the moment verifies the file is there before doing a modprobe call.
I have to clarify this only applies to running debos outside of the docker image and directly in the host Ubuntu system.
Recently I took a different approach to accomplish more or less the same to get Ubuntu 18.04 minimal onto an Allwinner board. Instead of running a builder I just downloaded the ARM (netboot) installation initrd from Ubuntu and ran it using qemu emulating the full ARM processor itself. It is quite slow to run the installer this way but in the end you’ll have the same Ubuntu installation as you’d have running the installer on general i386/AMD64 architectures which I find quite favorable because the resulting base installation is exactly as I have on my PC. I used ‘https://gist.github.com/takeshixx/686a4b5e057deff7892913bf69bcb85a’ as… Read more »
Unfortunately, The kernel and u-boot packages isn’t working, so I update the mirror and the debian suite in “/debos-armbian2debian/1-ArmbianKernel/overlays/armbian/sources.list.d” to
And I update the architecture to armhf and the name packages to “packages: [ linux-image-current-sunxi, linux-dtb-current-sunxi, linux-u-boot-orangepipc-current ]
”
To find the name packages I was search in mirror url and localize the packages names in dists directory.
Finally, I update the raw action in yaml file to a new bin file:
– action: raw
origin: filesystem
description: Raw do arquivo bin
source: /usr/lib/linux-u-boot-current-orangepipc_22.05.3_armhf/u-boot-sunxi-with-spl.bin