Questions tagged [arm]
Questions related to the CPU and instruction set of the Raspberry Pi. See also: cross-compiling
138 questions
-3 votes
1 answer
70 views
Can I boot an Arm32 OS on the latest RPIs
I am learning ARM assembly, and my final project is to create an OS fully in ASM and C. So, can I run this future OS on latest RPIs that are arm64 ? Even if the answer is probably no.
1 vote
1 answer
262 views
Correct cross-compilation options to run binary on Raspberry 3 model B
I have Raspberry Pi 3 Model B with me. I am developing on Ubuntu Linux laptop computer. I want to cross-compile so that the binary may run on Raspberry. My Raspberry info: pi@raspberrypi:~ $ cat /proc/...
5 votes
1 answer
9k views
Virtualization of Raspberry Pi OS 64-bit arm64 on M1 (arm64) Macbooks
I was wondering whether it was possible to virtualize Raspberry Pi OS Lite Bullseye 64-bit arm64 on an M1 Macbook pro. I've downloaded the '.img' file from the official source and tried to load it ...
0 votes
1 answer
420 views
Has Raspbian for the armel architecture been discontinued?
I am developing an embedded application, and because of supply issues I'm looking at using the Raspberry Pi 0W v1.1, which is armv6, which is armel. The images available for download, even ones ...
0 votes
0 answers
94 views
Are BCM2711's CPUs always running in 'secure' world?
If SoC's don't use TrustZone, according to this answer it means that the CPU starts in the 'secure' world but does not change to the 'normal' one. Is this the case with the Raspberry Pi 4's BCM2711? ...
1 vote
1 answer
1k views
Retropie with Raspberry Pi 4 can't install dolphin
I have installed Retropie using the Pi Imager and when I try to install Dolphin in the experimental packages it gives me the error that it only works on a 64 bit OS, but according to this website, ...
2 votes
1 answer
605 views
Which raspberry pi nowadays is compatible with 32bit ARMv7 assembly code?
I'm taking an assembly code class in college, and we're going to study ARM assembly. However, we'll only cover 32bit ARMv7 assembly code. The class uses some weird ARM emulator, but I would much ...
0 votes
0 answers
211 views
OpenCV is getting slow in Raspberry pi 4, 8gb
Here is have made a project attendance system, for which I have trained a model and used the .h5 file to make the real time Prediction using opencv. so if the person face is detected then his name and ...
0 votes
1 answer
2k views
Loading firmware into RP2040 SRAM via SWD
I have to upload a new firmware in the Raspberry PI PICO external flash via SWD from a different microcontroller (an ESP32) connected via UART and SWD lines (I asked here a previous question). I ...
1 vote
0 answers
306 views
Properly chrooting and unmounting on external USB drive
I found multiple guides how to correctly chroot into an arm64 system. In my example I am working with the 21.10 Ubuntu arm image for raspbian pi. I am wondering what is the "best" and most ...
0 votes
1 answer
10k views
Installing docker on a Pi zero W (or a pi zero2)
I am Trying to install docker on a 32bit Arm. Has anyone succedded and has a modus operandi?
2 votes
0 answers
2k views
Programming external QSPI flash Raspberry Pi Pico
I want to reprogram the external flash of a raspberry Pico via SWD line. This feature must be implemented in a different microcontroller, not from a Linux computer so the OpenOCD library cannot be ...
-2 votes
1 answer
441 views
Libreoffice version not up to date
The current Libreoffice version seems to be 7.2.2, but on my Raspberry Pi it's 6.1.5.2. I understand that maybe the ARM version of Libreoffice is a bit behind, but this can't be right. I used sudo apt ...
3 votes
0 answers
872 views
Creating an OS for the raspberry pi in rust, booting from it
I was following this tutorial on how to make your own basic OS for an x86_64 system in rust, but wanted to do it for an ARM64 target, specifically, the raspberry pi 4. I am at the point where I have ...
1 vote
1 answer
2k views
Getting OSError: /lib/aarch64-linux-gnu/libgomp.so.1: cannot allocate memory in static TLS block on Raspberry Pi 4
I am trying to access the models/tf.py from the Yolov5 repository with the following command on my Raspberry Pi 4 and getting the following error: Command ran: python3 models/tf.py --weights yolov5s....