2019-02-22 01:01:39 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# based on the instructions from edk2-platform
|
|
|
|
set -e
|
|
|
|
. build_common.sh
|
|
|
|
# not actually GCC5; it's GCC7 on Ubuntu 18.04.
|
2021-09-01 18:45:09 +00:00
|
|
|
GCC5_AARCH64_PREFIX=aarch64-linux-gnu- build -s -n 0 -a AARCH64 -t GCC5 -p MSM8916Pkg/Devices/j5lte.dsc
|
|
|
|
gzip -c < workspace/Build/MSM8916Pkg/DEBUG_GCC5/FV/MSM8916PKG_UEFI.fd >uefi.img
|
|
|
|
cat device_specific/j5lte.dtb >>uefi.img
|