From 7d5b2dc5f9de58135e50707fb410b14be113274f Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Wed, 6 Jul 2016 11:24:20 +0200 Subject: [PATCH] Create build_raspberrypi3_with_buildroot.md --- build_raspberrypi3_with_buildroot.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 build_raspberrypi3_with_buildroot.md 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: + +``` + +```