Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
| u-boot_for_zedboard [2019/04/07 10:44] – [Configuring and building] rpjday | u-boot_for_zedboard [2019/04/07 11:27] (current) – removed rpjday | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ===== Overview ===== | ||
| - | |||
| - | Building U-Boot for Zedboard on Fedora 30. | ||
| - | |||
| - | ===== Toolchain ===== | ||
| - | |||
| - | Fedora package: | ||
| - | |||
| - | < | ||
| - | $ type arm-linux-gnu-gcc | ||
| - | arm-linux-gnu-gcc is / | ||
| - | $ | ||
| - | </ | ||
| - | |||
| - | < | ||
| - | $ rpm -qf / | ||
| - | gcc-arm-linux-gnu-8.2.1-1.fc30.2.x86_64 | ||
| - | $ | ||
| - | </ | ||
| - | |||
| - | < | ||
| - | $ rpm -qi gcc-arm-linux-gnu | ||
| - | Name : gcc-arm-linux-gnu | ||
| - | Version | ||
| - | Release | ||
| - | Architecture: | ||
| - | Install Date: Thu 21 Mar 2019 09:29:31 AM EDT | ||
| - | Group : Unspecified | ||
| - | Size : 81242502 | ||
| - | License | ||
| - | Signature | ||
| - | Source RPM : cross-gcc-8.2.1-1.fc30.2.src.rpm | ||
| - | Build Date : Thu 31 Jan 2019 01:50:01 PM EST | ||
| - | Build Host : buildhw-08.phx2.fedoraproject.org | ||
| - | Relocations : (not relocatable) | ||
| - | Packager | ||
| - | Vendor | ||
| - | URL : http:// | ||
| - | Bug URL : https:// | ||
| - | Summary | ||
| - | Description : | ||
| - | Cross-build GNU C compiler. | ||
| - | |||
| - | Only building kernels is currently supported. | ||
| - | user space programs is not currently provided as that would massively multiply | ||
| - | the number of packages. | ||
| - | $ | ||
| - | </ | ||
| - | |||
| - | ===== Configuring and building ===== | ||
| - | |||
| - | Identify toolchain: | ||
| - | |||
| - | < | ||
| - | $ export ARCH=arm | ||
| - | $ export CROSS_COMPILE=arm-linux-gnu- | ||
| - | </ | ||
| - | |||
| - | Clean: | ||
| - | |||
| - | < | ||
| - | $ make distclean | ||
| - | </ | ||
| - | |||
| - | Configure: | ||
| - | |||
| - | < | ||
| - | $ make zynq_zed_defconfig | ||
| - | </ | ||
| - | |||