diff --git a/tech/pinephone.wiki b/tech/pinephone.wiki index 199879d..51c765a 100644 --- a/tech/pinephone.wiki +++ b/tech/pinephone.wiki @@ -4,6 +4,8 @@ The pinephone is a cheap generic linux phone. == u-boot == +See [[u-boot]] + == Gentoo == === Cross compiler === diff --git a/tech/u-boot.wiki b/tech/u-boot.wiki new file mode 100644 index 0000000..2f41894 --- /dev/null +++ b/tech/u-boot.wiki @@ -0,0 +1,15 @@ += U-boot = + +U-boot is a open source, universal boot loader + +== Compiling == + +Chances are you are cross compiling u-boot. To do this you will need a cross +compiler toolchain. To set one up, see [[cross_toolchain]]. + +You may also need `swig` and `python-dev` headers. You may also want your +distro's version of `uboot-tools` and `device-tree-compiler`, aka `dtc`. + +1) Clone the u-boot repository + * `git clone git://git.denx.de/u-boot.git` + *