Questions tagged [buildroot]

a set of Makefiles and patches that makes it easy to generate a complete embedded Linux system, from the cross-compilation toolchain to the complete image for flashing.

4 questions
2
votes
0 answers

'reboot' command doesn't work properly after 'cp' command, 'mv' behaves weird, as well

I have compiled C code running as a binary on an ARM. The ARM boots Linux from an SD Card using an old Image that was generated using buildroot. Within the C code I call a shell script that moves the new Image I want to boot with from a…
sdepot
  • 21
  • 1
1
vote
2 answers

Why does Buildroot's generic pc_x86_64_bios_defconfig image hang in Virtualbox?

I'm trying to nail down a buildroot (version 2017.02.4) config, and I need to separate kernel-related issues from software environment issues. So I've tried to build a simple disk image which will work both in a Buildroot environment and a real…
0
votes
1 answer

iptables TRACE No chain/target/match by that name

I'm debugging the iptables for a kvm VM running a Buildroot image.When I try to set the following TRACE rule I get the error iptables: No chain/target/match by that name sudo iptables -t raw -A OUTPUT -p tcp --destination 192.168.1.0/24 --dport 8443…
pablochacin
  • 200
  • 1
  • 2
  • 7
0
votes
0 answers

How do I get the Current time in milliSeconds in a Shell script in buildroot environment?

MYENV=$(date +"%s%N") printf "Time:: %s\n" "$MYENV" or MYENV1=$(date +"%T%N") printf "Time:: %s\n" "$MYENV1" I tried above methods, they do work in regular linux but not working in buildroot. 1606718041%N is the output being printed. What does…