diff options
-rwxr-xr-x | build-release | 7 | ||||
-rw-r--r-- | docs/git/index.html | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/build-release b/build-release index 15c5122..a958c01 100755 --- a/build-release +++ b/build-release @@ -203,6 +203,13 @@ if [ "$arch" = "x86_64" ] mv rmodtool ../../../libreboot_bin/cbfstool/i686/ fi +# cross-compile for ARM +make clean +make SHARED=0 CC='arm-linux-gnueabi-gcc -static' +mkdir ../../../libreboot_bin/cbfstool/armv7l +mv cbfstool ../../../libreboot_bin/cbfstool/armv7l/ +mv rmodtool ../../../libreboot_bin/cbfstool/armv7l/ + cd ../ rm -rf cbfstool mv cbfstool_ cbfstool diff --git a/docs/git/index.html b/docs/git/index.html index 53ffd1d..01f225b 100644 --- a/docs/git/index.html +++ b/docs/git/index.html @@ -502,6 +502,13 @@ and <b>bucts</b> will be included only as 64-bit statically linked binaries. <b>To include a statically linked flashrom and bucts for i686, you will need to build them on a chroot, a virtual machine or a real 32-bit system. You can find the build dependencies for these packages listed in deps-*</b> </p> + + <p> + armv7l binaries (tested on a BeagleBone Black) are also included in libreboot_bin, for: + </p> + <ul> + <li>cbfstool</li> + </ul> <p> If you are building 32-bit binaries on a live system or chroot (for flashrom/bucts), you can use the following to statically link them:<br/> |