Skip to content
Advertisement

Tag: buildroot

Kernel Panic with Buildroot Linux

I (try to) make a complete minimal Kodi Linux system with buildroot from scratch, everything compiles fine and i also got it to boot but after some lines of console output and graphics reset it gives me a kernel panic error: I have no clue why… My buildroot config file: https://pastebin.com/7PC4zLEa Image from the kernel panic: https://imgur.com/a/dPECTRH Answer It turns

Jlibfprint cross compilation

I’m trying to cross-compile the JNI Bridge Jlibfprint using buildroot. This is the source code. Here is the .mk file: Extract, Patch, Update, Configure, Autoreconfiguring, Patching libtool run without problem. Then it failed at Building stage with this: Then I added, these includes to the /JlibFprint_jni/src/Makefile.am And now it fails with: Answer I downloaded JDK for ARM 32 bits and

What is the minimal nesesary file subset, required to AMD OpenCL work on Linux?

I’ve built Linux Kernel, with means of the buildroot. I’ve incorporated opensource amdgpu driver and required firmwares into it. Driver is fine, detecting GPUs, mode setting acts good, adjusting resolution for “small text”, and command line shows up after boot. Now I require to run OpenCL program. I manually unpacked files from amdgpu-pro driver(rhel7 variant) and assembled skeleton fs then

Buildroot: install and build the toolchain only

I want to install and build just the toolchain for my Buildroot project. make help suggests that the command make <options> toolchain should work; however, running that command simply returns Nothing to be done for ‘toolchain’. and output/host is never created. Answer You first have to configure Buildroot in order to instruct it about what toolchain you want to produce.

make implies new Extracting

I created a Buidroot package with the both following files : .mk Config.in I succedded in compiling the package by using the above .mk file. However, because I wanted to modify the source code into output/build I note the following behavior (After removing only .stamp_built) : I obtain a new Extracting, Patching, Configuring, Building even if no .stamp removed… What’s

Failed to execute /init

I am trying to build a basic root filesystem using Buildroot, for an embedded system (the Banana PI D1). I am using a kernel from an SDK supplied by the SoC vendor. From this repo I am using only the kernel, found in src/kernel. There’s nothing remarkable about the Buildroot configuration. It builds with no errors and the resulting root

Buildroot : Which gcc for cross compilation?

I am newbee to buildroot. I can see multiple gccs in buildroot. I assume all are for cross compilation. What are the difference between those ? Answer The one you should use is buildroot-2012.05/output/host/usr/bin/arm-unknown-linux-uclibcgnueabi-gcc. The other ones are purely internals binaries.

Advertisement