From bcda19731be37f002cb333674987dbcd35db3bdb Mon Sep 17 00:00:00 2001 From: Dan Johansen Date: Sun, 15 Dec 2019 13:48:14 +0100 Subject: [PATCH] fix odroid n2 boot.ini The boot.ini file in the odroid-n2 profiles did not get edited correctly. This fixes the path to the correct file, and should therefore make the boot.ini change work for the odroid n2 mainline setup. Signed-off-by: Dan Johansen --- manjaro-arm-installer | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manjaro-arm-installer b/manjaro-arm-installer index 78c2dc2..a467969 100755 --- a/manjaro-arm-installer +++ b/manjaro-arm-installer @@ -1,7 +1,7 @@ #! /bin/bash # ***************************** -# Version 1.2.9 +# Version 1.2.10 # ***************************** # Set globals @@ -213,7 +213,7 @@ create_install() { $NSPAWN $TMPDIR/root systemctl enable amlogic.service 1> /dev/null 2>&1 elif [[ "$DEVICE" = "on2" ]]; then echo "LABEL=BOOT /boot vfat defaults 0 0" | tee --append $TMPDIR/root/etc/fstab 1> /dev/null 2>&1 - sed -i s/'meson64_odroidn2.dtb'/'meson-g12b-odroid-n2.dtb'/ $TMPDIR/boot/boot.ini 1> /dev/null 2>&1 + sed -i s/'meson64_odroidn2.dtb'/'meson-g12b-odroid-n2.dtb'/ $TMPDIR/root/boot/boot.ini 1> /dev/null 2>&1 elif [[ "$DEVICE" = "vim1" ]] || [[ "$DEVICE" = "vim2" ]] || [[ "$DEVICE" = "vim3" ]]; then echo "LABEL=BOOT /boot vfat defaults 0 0" | tee --append $TMPDIR/root/etc/fstab 1> /dev/null 2>&1 $NSPAWN $TMPDIR/root systemctl enable bluetooth-khadas.service khadas-utils.service 1> /dev/null 2>&1