From 99f362b24c08120e5dfb46318a39208badbcc831 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Mon, 13 Apr 2020 22:14:02 +0200 Subject: HACK: start adding GT-I9100G Issues: - Not properly integrated in the script - using OMAP4430 SDP dts instead Signed-off-by: Denis 'GNUtoo' Carikli --- build.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a9b41207f3d5..cb0b2f2dd097 100755 --- a/build.sh +++ b/build.sh @@ -20,6 +20,7 @@ supported_devices=" \ i9300 \ i9305 \ n710x \ + omap4-sdp \ " supported_os=" \ @@ -203,7 +204,11 @@ check_supported "${device}" "device" ${supported_devices} check_supported "${bootloader}" "bootloader" ${supported_bootloaders} check_supported "${os}" "OS" ${supported_os} -dtb="exynos4412-${device}.dtb" +if [ "${device}" = "omap4-sdp" ] ; then + dtb="omap4-sdp.dtb" +else + dtb="exynos4412-${device}.dtb" +fi make replicant_defconfig -- cgit v1.2.3