mirror of
https://github.com/Fishwaldo/build.git
synced 2025-07-23 21:39:02 +00:00
* Add initial support for Odroid N2+ * Update C4 config and test booting * Updates to C4, N2, N2+ - merge C4 and N2 legacy under meson64, same u-boot - upgrade legacy kernel to meed DTB from mainline - merge N2 and N2+, add a hack to display + in motd when N2+ is detected - shortly spin N2 fan at startup - merged N2 mainline and legacy boot script - add upstream patches * One of the regulators were breaking booting of Odroid N2 Co-authored-by: Werner <EvilOlaf@users.noreply.github.com>
26 lines
825 B
Diff
26 lines
825 B
Diff
From 80c32b8b2269bf5502f589cda9c2be4bb598b624 Mon Sep 17 00:00:00 2001
|
|
From: Igor Pecovnik <igor.pecovnik@gmail.com>
|
|
Date: Thu, 6 Aug 2020 17:15:05 +0200
|
|
Subject: [PATCH] Bootscript needs indication that its a legacy kernel
|
|
|
|
Signed-off-by: Igor Pecovnik <igor.pecovnik@gmail.com>
|
|
---
|
|
scripts/package/builddeb | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
|
|
index 8b15a0572..e7d1daa4e 100755
|
|
--- a/scripts/package/builddeb
|
|
+++ b/scripts/package/builddeb
|
|
@@ -268,7 +268,7 @@ rm -f /$installed_image_path
|
|
else
|
|
ln -sf $(basename $installed_image_path) /boot/zImage > /dev/null 2>&1 || mv /$installed_image_path /boot/zImage
|
|
fi
|
|
-touch /boot/.next
|
|
+rm -f /boot/.next
|
|
exit 0
|
|
EOT
|
|
##
|
|
--
|
|
Created with Armbian build tools https://github.com/armbian/build
|
|
|