Files
lbmk/config/deguard/patches/0001-Replace-usr-bin-python3-with-usr-bin-env-python3.patch
Ron Nazarov 4f287c85c0 supermicro x11ssh_f: Use deguard-configured ME image instead of SPS
Using the same ME image as the 3050 Micro.  This fixes the lack of a
backup download URL for the ME and speeds up boot time, since MRC
caching is working with ME (unlike SPS).

Unfortunately, since the MFS partition must be preserved, this does
mean we need a larger ME region than with me_cleaned SPS.
2026-02-26 01:25:22 +00:00

62 lines
1.6 KiB
Diff

From 80a8aeec376621b633634a092aa13e795de2fbce Mon Sep 17 00:00:00 2001
From: Ron Nazarov <ron@noisytoot.org>
Date: Sat, 14 Feb 2026 18:13:21 +0000
Subject: [PATCH 1/4] Replace "#!/usr/bin/python3" with "#!/usr/bin/env
python3"
Makes this work on Guix, which has /usr/bin/env but does not install
python3 into /usr/bin.
Change-Id: I5da9d2e975f6465ce5eea27476152afffe301112
Signed-off-by: Ron Nazarov <ron@noisytoot.org>
---
finalimage.py | 2 +-
gen_shellcode.py | 2 +-
generatedelta.py | 2 +-
mfsutil.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/finalimage.py b/finalimage.py
index c77f5f4..e3fbd01 100755
--- a/finalimage.py
+++ b/finalimage.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/gen_shellcode.py b/gen_shellcode.py
index 1d8fbfb..0e1130a 100755
--- a/gen_shellcode.py
+++ b/gen_shellcode.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/generatedelta.py b/generatedelta.py
index 9153d61..0b35c1f 100755
--- a/generatedelta.py
+++ b/generatedelta.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/mfsutil.py b/mfsutil.py
index 246d213..7171e5f 100755
--- a/mfsutil.py
+++ b/mfsutil.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
# This code is based on MFSUtil by Youness Alaoui (see `doc/LICENSE.orig` for original copyright)
--
2.52.0