diff --git a/build_raspberrypi3_with_buildroot.md b/build_raspberrypi3_with_buildroot.md new file mode 100644 index 0000000..40b2175 --- /dev/null +++ b/build_raspberrypi3_with_buildroot.md @@ -0,0 +1,23 @@ +basis: +====== + +from: https://code4pi.fr/2014/03/creation-dune-custom-image-pour-votre-raspberry-pi/#more-470 + +downmload last buildroot version: +``` +git clone http://git.buildroot.net/buildroot +# or +git clone git://git.busybox.net/buildroot +cd buildroot +make raspberrypi3_defconfig +#make menuconfig +make -j8 +``` + +Now the kernel and all that is needed to sater has been created in ```output``` and the bases if images is set in ```output/image``` + +Now we need to install toolchain and basis headers: + +``` + +```