Showing Posts With Tag
Linux
- March 30, 2025
Making initramfs image with Yocto
Embedded systems can have different types of persistent (non-volatile) storage, like eMMC, SD card, NOR or NAND flash memory. Each storage type has advantages and disadvantages with regards to the re...
- October 20, 2024
Custom SPI peripheral in QEMU
In previous posts the process for creating a custom [memory mapped](../ldd-custom-qemu-device/) and [I2C](../qemu-custom-i2c-peripheral/) peripheral in QEMU was shown. In this post we will go throug...
- July 21, 2024
SWUpdate for Cubieboard QEMU
Software update is an important part of design of modern embedded systems. It allows faster time to market, since fixes, security or stability updates or even new features can be pushed to the device...
- June 9, 2024
Integrating support for custom QEMU peripherals in Yocto
In the previous posts a [custom memory-mapped peripheral](../ldd-custom-qemu-device/) was introduced, together with the [Linux device driver](../ldd-linux-device-driver/) for it and a [userspace appl...
- May 26, 2024
Custom I2C peripheral in QEMU
QEMU supports creating various peripherals, not only the [memory-mapped](../ldd-custom-qemu-device/) shown in previous posts. In this post we will go through the process of creating a new I2C periph...
- May 19, 2024
Userspace application for QEMU custom memory-mapped device
_This is part 3 of the Linux device driver development post series._ In the [previous post](../ldd-linux-device-driver/) the structure of a Linux device driver for the custom memory-mapped periphera...
- May 19, 2024
Linux Device Driver for QEMU custom memory-mapped device
_This is part 2 of the Linux device driver development post series._ In the [previous post](../ldd-custom-qemu-device/) the steps for creating a custom memory-mapped peripheral in QEMU were presente...
- May 19, 2024
Creating Custom QEMU Memory Mapped Device
_This is part 1 of the Linux device driver development post series._ In this post we will cover the following things - [Designing custom memory-mapped device in QEMU](#designing-custom-memory-mappe...
- May 19, 2024
Linux device driver development using QEMU - introduction
In the previous [posts](../qemu-board-emulation-part1/) I introduced simple methods to prepare and run a QEMU image for board emulation. Target board was Cubieboard and mainline U-Boot and Linux kern...
- April 21, 2024
Yocto for Cubieboard in QEMU - Step-by-step
In the [previous post](../qemu-board-emulation-part2/) Ubuntu was used as root filesystem. Using Ubuntu as root filesystem is simple and fast to use, but it also has a lot of packages which are not n...
- April 21, 2024
Yocto for Cubieboard in QEMU
## Root filesystem options The root filesystem is an important part of the BSP (Board Support Package), since it holds all of the applications, configuration files and kernel modules. There are sev...
- March 24, 2024
Preparing and running QEMU ARM for Cubieboard (Part 2)
_This is part 2 of the QEMU Board Emulation post series._ In the [previous post](../qemu-board-emulation-part1/) the basic steps for obtaining and compiling QEMU, U-Boot and Linux were presented. Th...
- March 24, 2024
Preparing and running QEMU ARM for Cubieboard (Part 1)
_This is part 1 of QEMU Board Emulation series_ In this post I will cover the following things - [Building QEMU](#building-qemu) - [Downloading QEMU source code](#downloading-qemu-source-code) ...
- March 24, 2024
QEMU Board Emulation introduction with Cubieboard
## Why QEMU? There are many cheap COTS (Commercial Off-The-Shelf) development boards available for playing with and learning Embedded linux: [Raspberry Pi](https://www.raspberrypi.org/), [BeagleBone...