12MB Minimal Image for Raspberry Pi using the Yocto Project

Last year, I wrote instructions and provided a download link about a minimal image for Raspberry Pi based on Raspbian. The compressed image is 84MB, and the good thing about it is that you can just use apt-get to install packages. The problem is that it’s not actually that small as once it is uncompressed the rootfs is still a massive 414 MB.

So today, I’ll explain how to create a smaller (and custom) image using the Yocto Project, a platform that let you build an embedded Linux distribution matching exactly your project’s requirements. Other advantages are that the build is configurable with config files, so it’s easily reproducible with a few command lines, and it might turn out to be useful to learn more about the Yocto Project as many boards and SoC are now making use of the framework, including Freescale i.MX6 (Wandboard, Olinuxino-imx233, Sabrelite, etc…), the Beagleboard, and Minnowboard to name a few.

If you just want the image, you can download the compressed image (12MB), extract it, use dd to copy it to your SD card, and gparted to resize the rootfs. This is an image that’s only useful for (headless) embedded systems, but more likely than not, you’d want to customize it with the instructions below.

I got started with instructions from pimpmypi, but these are a little old, and now everything seems much simpler. I’ve performed the steps below in a PC running Ubuntu 12.04 LTS, and with most dependencies required (e.g. build-essentials, git) already installed.

First you need to get poky and the meta layer for Raspberry Pi:


dylan is the codename of the latest Yocto Project release (Version 1.4).

Then you can run the following command line to initialize some environment variables and the build directory:


Now edit conf/local.conf with vim or nano to optimize the build speed depending on your PC processor (generally number of threads/cores +1), set the machine as Raspberry Pi, and possibly adjust the GPU memory, by updating or adding the corresponding lines:


You may want to check the README if you want to overclock your R-Pi board, change the rootfs type, add VC-1 or/and MPEG-2 licenses, or disable overscan. All those extra options, including GPU_MEM, can be added by editing config.txt directly in the SD card, but doing it before the build makes the steps automatically reproducible.

You also need to add the path to meta-raspberrypi in conf/bblayers file, so that it looks like:


Now we’re ready to build the image. There are two images possible: rpi-basic-image and rpi-hwup-image, both of will provide a minimal image, but rpi-basic-image will add ssh-server-dropbear (for ssh server support) and splash (for the splash screen). Let’s go with rpi-basic-image:


It took just over one hour in my computer, but it may take less or much more time depending on your computer and/or Internet connection.

Once the build is complete you should see a file called tmp/deploy/images/rpi-basic-image-raspberrypi.rpi-sdimg, which is a symlink to the binary image you want to dump on your SD card. The file size is 80MB, but it can be compressed to 12MB if you want to distribute over the Internet:


Now insert an SD card in your Linux computer, and check the device name:


Since I have a USB hard drive attached to my computer I do this all the time, because sometimes the SD card is /dev/sdb, and other times /dev/sdc, and if I use the wrong one, all my data will be lost.

Let’s copy the image with dd or dd.sh:


Now remove the SD card, and reinsert it. The ext-3 partition in the image is only 55MB, so to make full use of your SD card storage capacity, you need to resize the partition with the command line, or easier, with gparted. Resizing from the Raspberry Pi won’t work with this image, as resize2fs utility is not available.

We’re now ready to try it out. Let’s insert the SD card into the Raspberry Pi, and connect the power. You can access the console via HDMI, the UART port, or if you’ve connected an Ethernet cable via ssh.

Near the end of the boot, or when you access the board with SSH, you should see:


Login with as root without password.

Let’s check some details about the kernel:


busybox:


available space:


and available memory:


We’ve got a recent kernel, only 42.8MB of the root file system is used, and 232MB RAM available on a Raspberry Pi Model B with 256 MB RAM.

Let’s check the kernel config on the board:


You can download the kernel config for details.

If you want to save even more memory, or add features, you can change the kernel configuration with:


and build the kernel with:


Busybox can also be tuned with the commands:


The images recipes are located in poky/meta-raspberrypi/recipes-core/images, and you you could copy rpi-basic-image.bb to rpi-myappliance-image.bb, and edit the later to add the recipes/packages you need.

But this may be difficult, if you don’t know exactly what you need, and luckily the Yocto Project also have a graphical interface called “hob” that you can just start from the build directory. Let’s start with rpi-hwup-image for the Raspberry Pi by selecting the corresponding machine and base image:

Raspberry_Pi-Yocto_Hob

You can then either select “Edit Image” to add recipes and/or package groups, or simply click “Build Image” to start the build. Let’s just do that. The build is now much faster since most packages have already been built when we ran “bitbake rpi-basic-image”.

R-Pi_Yocto_Hob_Task

After a few minutes, you should the “Your image is ready” window below with easy access to the binaries and log files:

Yocto_Hob_Raspberry_Pi_Build_Complete

If instead of clicking “Build Image”, you clicked on “Edit image” you’d have access to the list of included recipes, all recipes and package groups. In the screenshot below I searched for recipes with “bcm” and “rpi” names. bcm2835 is used for GPIO support, so you may want to include it in the build.

Yocto_Rpi_Edit_Recipes

Once you’ve selected the required packages, click on “Build Packages”, and after a while, Step 2 window will appear and let you click on “Build Image”. Your custom SD card image will be available in tmp/deploy/images/ directory with the name hob-image-raspberrypi.rpi-sdimg.

That’s just a small overview of what’s possible with the Yocto Project for the Raspberry Pi board. For further details you may want to check the project’s documentation, and you may also read Hob’s manual for specific details about Yocto’s GUI.

Share this:

Support CNX Software! Donate via cryptocurrencies, become a Patron on Patreon, or purchase goods on Amazon or Aliexpress

ROCK Pi 4C Plus
Subscribe
Notify of
guest
The comment form collects your name, email and content to allow us keep track of the comments placed on the website. Please read and accept our website Terms and Privacy Policy to post a comment.
75 Comments
oldest
newest
manuti
manuti
10 years ago

Incredible, congratulations. This summer if I have enough time I try to prepare my own little distro with your instructions.

Vinicius Tinti
Vinicius Tinti
10 years ago

Hi,

Should not it be?

mkdir yocto
cd yocto
git clone -b dylan git://git.yoctoproject.org/poky.git
cd poky
git clone -b dylan git://git.yoctoproject.org/meta-raspberrypi

Regards

Rich
Rich
10 years ago

Thanks for pointing me in this direction. I already have a nice custom build for my Pi thanks to this. I do have some issue though – on first boot ethernet is working fine, but on subsequent boots it doesnt. I have to goto a prompt (using a monitor etc) and manually do “ifdown eth0” then “ifup eth0” and it is working again.

Have you seen this happen, and if so how did you fix it?

Eduardo
10 years ago

i tried your commands but bitbake is failing here:

Pseudo is not present but is required, building this first before the main build
ERROR: Unable to parse /home/edsiper/coding/yocto/poky/meta-raspberry/conf/layer.conf: [Errno 2] No such file or directory: ‘/home/edsiper/coding/yocto/poky/meta-raspberry/conf/layer.conf’

i cannot find the missing dependency package…

danial smith
danial smith
10 years ago

please teal me how can i install gui interface (Desktop) and install other application on it ???

kazaar
kazaar
10 years ago

I tried to follow the steps to the letter, tried under Fedora and Ubuntu distributions.
Every time bitbake stops at this point:

0: linux-raspberrypi-3.6.11+git31a951046155b27361127d9cf85a1f58719fe9b3-r6 do_fetch (pid 1705)
1: linux-libc-headers-raspberrypi-3.2.27-r0 do_fetch (pid 1690)
2: bcm2835-bootfiles-20130107-r3 do_fetch (pid 1706)

It seems to be unable to get those files and I don’t know how to get them in other way. Tried to google for the problem without luck.

Any Ideas?

Luke
Luke
10 years ago

Thank you very much for this. I have reconstructed your described build process and flashed the resulting image. After dding it to the SD, inserting SD, HDMI and uUSB power, the green ACT LED flashes up once, red LED lights up permanently, nothing is visible on the HDMI Monitor. Plugging in USB keyboard, caps lock LED does not react. I tried the same with your prebuilt image with the same result. Using a rasbian as reference from the same SD works well. Any hints would be most appreciated.

Luke
Luke
10 years ago

@kazaar
Just wait until bitbake finished cloning those git repositories. Especially the kernel might take a while, maybe hours. A workaround would be to modify the kernel recipe changing the original SRC_URI to a mirror.

Unless it encounters an error and notifies you about that, bitbake won’t stop.

Luke
Luke
10 years ago


Thanks, same symptoms writing your image to an old 2GB SD. Also, with the other SDHC card, rasbian works, yocto images don’t. So I guess I cannot blame the SD. Looks like I will have to recover my old FTDI cable.
Do you get any output on your HDMI display and usb function by default in the posted image?

Luke
Luke
10 years ago


Ok. So I hooked up the FTDI cable.
16 GB SanDisk Class 100 SDHC

2013-09-25-wheezy-raspbian.img will give a bunch regular linux boot kernel messages in the terminal. I can connect usb hdmi and everything works instantly.

rpi-basic-image-raspberrypi-20130702123605.rootfs.rpi-sdimg will give this �<� in terminal and no hdmi or usb interaction.

Might this be related to different hardware revisions ? A sticker on the back of my RPI says E1613RS2V13B1.0
Do you have a similar identifier?

Luke
Luke
10 years ago

That’s great! Something similar here http://blog.rogiervandenberg.nl/2013/05/how-to-fix-boot-problems-with-hynix.html

In fact I do have a newer version with hynix memory. Will update once tested

Luke
Luke
10 years ago


Win 🙂

So for everybody who encounters the no boot problem:

Using

bootcode.bin
cmdline.txt
config.txt
*.elf

from

http://downloads.raspberrypi.org/images/raspbian/2013-02-09-wheezy-raspbian/2013-02-09-wheezy-raspbian.zip

fixes the yocto 1.4 images on my newer 512MB hynix memory raspberry pi.

phil
phil
10 years ago


Hi,

I tried with dora for both poky and meta-raspberrypi and I’ve this error when I bitbake basic image:
ERROR: No recipes available for:
/home/plegal/svn/rpi/poky/meta-raspberrypi/recipes-graphics/mesa/mesa_9.2.2.bbappend
ERROR: Command execution failed: Exited with 1

So I tried dora for poky and dylan for meta-raspberrypi and I still have the no boot problem.

One solution is to replace the bootcode.bin, start.elf and start_cd.elf from the deploy img with the same files in the last noobs_v1.3.2 image.

After that it boots.

phil
phil
10 years ago

@phil
OK, it’s compile and boot fine if we change mesa_9.2.2 to mesa_9.1.6 and if we change the preferred kernel to 3.8.%

Paul
Paul
10 years ago

Hello, I created the minimal rpi-hwup-image image and it boots great. Problem is in eclipse for my c project I am using tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabi-raspbian I have used the normal or hard floating point.
The hard floating point creates an executable that when I run on this build it just says “not found” like it doesn’t even understand it. So I changed it to soft floating point and I get “segmentation fault”. My only linker entry is for pthread. What compiler works with this build? I would really appreciate your help. Thanks.

Filip
Filip
10 years ago

Is it possible to configure yocto to be build for raspberrypi with hard-float support set?

Sheeru
Sheeru
10 years ago

I am currently trying to add new packages to rpi-basic-image and build my custom distribution. I started with hello world package. I created a new meta layer and I wanted to add additional packages to the image in that layer. I tried testing with the hello world auto tooled package. This hello world is the hello world autotooled package downloaded from ftp://ftp.gnu.org/gnu/hello/hello-2.7.tar.gz. When trying to execute that bb, am getting the error as follows, | make: *** No rule to make target `install’. Stop. | ERROR: oe_runmake failed My bb file is as follows, DESCRIPTION = “Dummy” SECTION = “package”… Read more »

Aananth C N
Aananth C N
9 years ago

The image generated out of “bitbake rpi-basic-image” works well on Raspberry Pi Rev B model. But it does not work on Rev B+ model hardware. Any one verified this?

Aananth C N
Aananth C N
9 years ago


Thank you. It worked after updating the firmware as per the link above.

Vincent Wang
Vincent Wang
9 years ago

Hi , thank you very much for the share. I’m using “bitbake busybox -c menuconfig” and customized the utilities working good. But when I trying to add telnetd utility via busybox, I find that I need to add some configuration in rootfs, for telnetd to auto launch and configure itself. How can I find the way to add my own files to rootfs and let bitbake compile it together with the whole rootfs?

Deepak
Deepak
9 years ago

Hi

I have Rasberry Pi B+ board and downloaded the 12 Mb compressed image from the link specified in your blog.
After decompressing it I issued following command from terminal of my Ubuntu 14.04
sudo dd if=./rpi-basic-image-raspberrypi-20130702123605.rootfs.rpi-sdimg of=/dev/sdb bs=1M

Bow I have inserted the SD card on my board and attached Keyboard and Monitor to it.

My issue is When I give power to the board then nothing comes up. Can anyone help ??

Oolav
Oolav
9 years ago

Hi,

I ran a bitbake rpi-base-image then tweaked a few things with hob. Problem is I don’t get any *.rpi-sdimg in my deploy dirtectory now.

Do you know how to build an sd card image from just Image-*.bin and rpi-basic-image-raspberrypi.rootfs.* files ?

Regards.

Oolav
Oolav
9 years ago

@Oolav
I found the solution to my problem :

using hob adds a few lines to your local.conf file.
add to comment the lines below :

#added by hob
#IMAGE_FSTYPES = “ext3 tar.bz2”

Then bibake rpi-basic-img creates the *.rpi-sdimg file.

Do you think I could add “rpi-sdimg” to the IMAGE_FSTYPES variable ? would it work ?

Peter
Peter
9 years ago

bitbake rpi-basic-image results in: ERROR: Function failed: Unpack failure for URL: ‘http://www.rpm5.org/files/rpm/rpm-5.4/rpm-5.4.9-0.20120508.src.rpm;extract=rpm-5.4.9.tar.gz’. Unpack command PATH=”/home/yocto/poky.git/scripts/native-intercept:/home/yocto/poky.git/scripts:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/armv6-vfp-linux:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/sbin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/sbin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux//bin:/home/yocto/poky.git/scripts:/home/yocto/poky.git/bitbake/bin:/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.8.3″ rpm2cpio.sh /home/yocto/my-rpi-build/downloads/rpm-5.4.9-0.20120508.src.rpm | cpio -id rpm-5.4.9.tar.gz failed with return value 1 ERROR: Logfile of failure stored in: /home/yocto/my-rpi-build/tmp/work/x86_64-linux/rpm-native/5.4.9-r63/temp/log.do_unpack.28861 Log data follows: | DEBUG: Executing python function do_unpack | DEBUG: Executing python function base_do_unpack | NOTE: Unpacking /home/yocto/my-rpi-build/downloads/rpm-5.4.9-0.20120508.src.rpm to /home/yocto/my-rpi-build/tmp/work/x86_64-linux/rpm-native/5.4.9-r63/ | /home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/unlzma: /lib64/liblzma.so.5: no version information available (required by /home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/unlzma) | /home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/unlzma: /lib64/liblzma.so.5: no version information available (required by /home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/unlzma) | /home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/unlzma: (stdin): File format not recognized | cpio: premature end of archive | DEBUG: Python function base_do_unpack finished | DEBUG: Python function do_unpack finished |… Read more »

Peter
Peter
9 years ago

I tried on a different host where I got a different error message but still related to unpacking: | ERROR: Function failed: Unpack failure for URL: ‘http://www.python.org/ftp/pyt hon/2.7.3/Python-2.7.3.tar.bz2’. Unpack command PATH=”/home/yocto/poky.git/scrip ts/native-intercept:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin/b zip2-native:/home/yocto/poky.git/scripts:/home/yocto/my-rpi-build/tmp/sysroots/x 86_64-linux/usr/bin/armv6-vfp-linux:/home/yocto/my-rpi-build/tmp/sysroots/x86_64 -linux/usr/bin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/sbin:/home /yocto/my-rpi-build/tmp/sysroots/x86_64-linux/usr/bin:/home/yocto/my-rpi-build/t mp/sysroots/x86_64-linux/sbin:/home/yocto/my-rpi-build/tmp/sysroots/x86_64-linux //bin:/home/yocto/poky.git/scripts:/home/yocto/poky.git/bitbake/bin:/usr/local/b in:/usr/bin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.8.3″ bzip2 -dc /hom e/yocto/my-rpi-build/downloads/Python-2.7.3.tar.bz2 | tar x –no-same-owner -f – failed with return value 2 ERROR: Task 783 (/home/yocto/poky.git/meta/recipes-devtools/python/python-native _2.7.3.bb, do_unpack) failed with exit code ‘1’ NOTE: Tasks Summary: Attempted 426 tasks of which 422 didn’t need to be rerun an d 1 failed. Waiting for 0 running tasks to finish: Summary: 1 task failed: /home/yocto/poky.git/meta/recipes-devtools/python/python-native_2.7.3.bb, do_unpack Still this seem to… Read more »

Abhishek
Abhishek
9 years ago

I am not able to download using git clone -b dora git://git.yoctoproject.org/poky.git
gives connection timeout error

please update your post for Ubuntu 14.04 as well

Thank you

Abhishek
Abhishek
9 years ago

How could i come to know that what packages are already available in final image ?actually I wanted to customize as per my requirement, with minimum possible size !
In case I need to add some additional packages, how can i do so?

Thank you

Abhishek
Abhishek
9 years ago

@Jean-Luc Aufranc (CNXSoft) i am getting these warming while doing “bitbake rpi-basic-image”. Is it OK? how can i remove these warnings? WARNING: Failed to fetch URL http://zlib.net/pigz/pigz-2.3.tar.gz, attempting MIRRORS if available WARNING: Failed to fetch URL http://www.apache.org/dist/apr/apr-1.4.8.tar.bz2, attempting MIRRORS if available WARNING: Failed to fetch URL http://www.apache.org/dist/apr/apr-util-1.5.2.tar.gz, attempting MIRRORS if available WARNING: Failed to fetch URL http://www.apache.org/dist/subversion/subversion-1.7.10.tar.bz2, attempting MIRRORS if available WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/n/netbase/netbase_5.1.tar.gz, attempting MIRRORS if available WARNING: Failed to fetch URL ftp://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_1.17.1.tar.xz, attempting MIRRORS if available WARNING: Failed to fetch URL ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/dosfstools-2.11.src.tar.gz, attempting MIRRORS if available WARNING: Failed to fetch URL http://ftp.de.debian.org/debian/pool/main/m/mklibs/mklibs_0.1.38.tar.gz, attempting MIRRORS if… Read more »

Abhishek
Abhishek
9 years ago

bitbake get stuck with this

0: linux-raspberrypi-3.6.11+git63b69a8806ce1890711ff55280c90673ea415933-r7 do_fetch (pid 26599)
1: bcm2835-bootfiles-20130819-r3 do_fetch (pid 17868)

no further improvements no matter how much time is given……….

please help

Abhishek
Abhishek
9 years ago

These are the error I received at the end and it stopped. I am using Ubuntu 14.04. please help

WARNING: Failed to fetch URL git://github.com/raspberrypi/firmware.git;protocol=git;branch=master, attempting MIRRORS if available
ERROR: Fetcher failure: Fetch command failed with exit code 128, output:
Cloning into bare repository ‘/home/abhi/yocto/poky/build/downloads/git2/github.com.raspberrypi.firmware.git’…
fatal: unable to connect to github.com:
github.com: Name or service not known

ERROR: Function failed: Fetcher failure for URL: ‘git://github.com/raspberrypi/firmware.git;protocol=git;branch=master’. Unable to fetch URL from any source.
ERROR: Logfile of failure stored in: /home/abhi/yocto/poky/build/tmp/work/raspberrypi-poky-linux-gnueabi/bcm2835-bootfiles/20130819-r3/temp/log.do_fetch.31947
ERROR: Task 299 (/home/abhi/yocto/poky/meta-raspberrypi/recipes-bcm/bootfiles/bcm2835-bootfiles.bb, do_fetch) failed with exit code ‘1’

Abhishek
Abhishek
9 years ago


dizzy does not have meta-raspberrypi

Abhishek
Abhishek
9 years ago

So,It seems, I must stick with ‘dora’ only………or shall I try for ‘master’? any suggestions ?

Somasekhar
Somasekhar
9 years ago

Hi Abhishek,
I am trying with daisy, with this “linux-raspberrypi” is fetched successfully and “bcm2835-bootfiles” is still fetching.
I will let you know once it is done. But the size of linux-raspberrypi object is around 1.2GB. I don’t know why this much.

Abhishek
Abhishek
9 years ago

I have used following link to build my image but here, the size is 29 MB. WHY

Abhishek
Abhishek
9 years ago

Difference between rpi-basic-image and rpi-hwup-image? actually,I want have generated rpi-hwup-image, which is 294 mB size using “bitbake rpi-hwup-image”……..Now I want to customize it further,so remove/add some features to/from it? how can I do so?
What are the features which are already removed in this reduced version? Can I add those removed features also from this image? HOW?

Don Pedro
Don Pedro
9 years ago

My build seem to work, but will lock up sometime around the login prompt. The output on the serial line looks fine in the start, but then at the end it’s just garbage, and then it dies.

Abhishek
Abhishek
9 years ago

how can i add my TFT driver to rpi-hwup-image ? do i need some tool chains like gcc or gdb additionally?

Abhishek
Abhishek
9 years ago

Please answer to these questions:
1) What basic packages needed fo raspberrypi ?
2) What if I want to add any package after my image is build ?
3) Do i need to repeat the complete process again?
4) How can i add any driver (ex: TFT driver) to the build kernel image?
5) How to add any desired applications to packages?

Abhishek
Abhishek
9 years ago

I have successfully created rpi-basic-image with ssh server. Now I want to access raspberrypi via ethernet cable using ssh server on my laptop.I have tried to use the standard ways as mentioned for raspbian. But nmap is not able to find raspberrypi’s address. Could u please specify steps how to connect raspberrypi with ubuntu using ssh? Please help

Abhishek
Abhishek
9 years ago

I have successfully generated npi-basic-image but when I try to access the raspberrypi using ssh (ethernet cable) I get error: DNS server missing on host How to enable dns-server on host rpi-basic-image ?

Abhishek
Abhishek
9 years ago


I have successfully created rpi-basic-image. I have installed openssh package already in image
actually I am trying to access laptop screen via ethernet (ssh) by giving static ip in /etc/network/interface at host side (laptop). eg:
auto lo
iface lo inet loopback

iface eth0 inet static
address 192.168.1.248
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1

But when I try to search using “nmap -sP 192.168.1.1-255”, it says:
mass_dns: warning: Unable to determine any DNS servers. Reverse DNS is disabled. Try using –system-dns or specify valid servers with –dns-servers

how could this issue be resolved ?

Adrian
Adrian
8 years ago

Hi!
Congrats for the tutorial!

I have made an image with hob like you said but after i copy on it a cross-compiled program i can’t run it.I receive this message: -sh: program_name : not found.
If I copy the program to a raspberry that runs raspbian it works fine.
You know what can be the problem in this case?

Thanks

Dr. Sherif Omran
6 years ago

the smallest image i can get for the Pi 0 W is 125 MB. The website refered to is no longer online.

ram_zi
ram_zi
5 years ago

will it work for the raspberry pi 3 B+ ??

tkaiser
tkaiser
5 years ago

No. At least not without exchanging the primary OS called ThreadX on the FAT partition. RPi users usually don’t know it but the main operating system on these RPi thingies is a closed source RTOS (euphemistically called ‘firmware’) that needs to be loaded first and everything that’s related to hardware happens here.

Asides that it really makes no sense to run a software stack that is half a decade old today.

Khadas VIM4 SBC