Questions tagged [buildroot]
Questions concerning Buildroot, the tool for generating, configuring and using toolchains which can be used to generate Linux systems or parts thereof.
177 questions
0
votes
0
answers
28
views
Linux boot on Verdin iMX8MP stops after “Freeing unused kernel memory” when booting via TFTP
I am experiencing a problem when booting Linux on the Verdin Dahlia Carrier Board, where the boot log only goes up to:
#################################################################
###########...
2
votes
0
answers
49
views
What am I doing wrong here? (npm, root privileges ... ?)
Somewhat floundering. I'm trying to install and run an open-source app called "Swordfish", which is a CAT (computer-assisted translation) app.
I've never really built from source before in ...
0
votes
0
answers
27
views
ACM and ECM not working for buildroot
I am working on a embedded project that uses Buildroot. I need my device to be a usbgadget which shares internet and a virtual UART to a host device . The host device a android device(or a linux ...
4
votes
1
answer
223
views
buildroot: zgrep + zless not working
I've noticed that zgrep and zless are not working in Buildroot 2025.05.
I managed to fix zgrep by adding a symlink from /usr/bin/grep to /bin/grep.
zless is a script and I suspect the issue is that ...
1
vote
0
answers
79
views
buildroot libcamera: "No cameras were identified on the system"
I'm trying to run the uvc-gadget application and I'm running into "No cameras were identified on the system" error from libcamera on my Raspberry Pi Zero 2 W using buildroot and am hoping ...
0
votes
0
answers
49
views
Custom Linux No /dev/video0 for i2c camera decoder
I am trying to use tw9990 connected to a ATSAMA5D29 to play a camera feed. I have a custom board where the digital data lines are going to the ISC lines of the processor. I have an embedded linux ...
0
votes
1
answer
51
views
ALSA lib not outputing on custom linux
I am running a custom linux distribution on a custom board running on an ATSAMA5D29. I am managed to get the sound to work on the demo board, but when running it on custom hardware I get the error:
# ...
0
votes
1
answer
528
views
How to use dd with status in busybox?
I use busybox (and buildroot). How to use status? For example
dd if=disk.img of=/dev/sda bs=4M conv=fsync status=progress
0
votes
0
answers
77
views
buildroot external.mk target with variable parameters not working
I would like to merge configuration from Makefile, for this I've updated external.mk and introduced this:
# Custom target to merge multiple defconfig files
.PHONY: merge
merge:
@if [ -z "$(...
0
votes
0
answers
392
views
Unable to login to root shell of Linux system built using Buildroot
I built Linux kernel and root file system using Buildroot(2022.08.x) for STM32MP157 target. SystemD is chosen as init system. The target boots and login prompt appear but I am unable to login to shell....
1
vote
2
answers
363
views
Can’t get DNS IPs with NetworkManager during PXE boot
I’ve built a custom Buildroot with NetworkManager as the only networking daemon and booting my board via PXE. The problem is that /etc/resolv.conf is missing actual DNS IPs and domain. While kernel is ...
1
vote
1
answer
2k
views
Uboot boots from SD card, but can't read info from mmc
I am working on setting up a bootable SD card for a Rockchip SOQuartz CM4.
I am able to build uboot for this target, write it to an SD card along with a rootfs image and kernel, load uboot, and get to ...
0
votes
1
answer
149
views
Apache refuses to start claiming a wrong PID
I'm facing an odd problem on a Buildroot environment for RPi3.
I have this init.d service to start apache2 (version 2.4.57):
# cat /etc/init.d/S50apache
#!/bin/sh
case "$1" in
start|...
0
votes
0
answers
70
views
`w` not working on Buildroot
I'm working remotely on an embedded device running Buildroot. My colleagues are working on this same device, so it's important to know who else is logged in.
For a previous project (running on a non-...
0
votes
1
answer
110
views
Granting privileges using visudo still prevents user to execute command
Following this solution, I want to grant to the user daemon the execution of /bin/date.
Here what I did:
find the user that apache2 uses when spawning:
# ps | grep httpd
252 root /usr/bin/httpd -...