From ad922608db3871dfb9ffebf9e170bf0d6d0beb76 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sat, 7 May 2022 12:15:01 -0400 Subject: [PATCH] Update for 07-05-22 12:15 --- tech/pinephone.wiki | 2 ++ tech/u-boot.wiki | 15 +++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 tech/u-boot.wiki 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` + *