mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
0679b75e1d
Cloudfare patches to speed up LUKS encryption were upstreamed into linux kernel and backported to 5.10.9: https://github.com/cloudflare/linux/issues/1#issuecomment-763085915 Therefore, we bump to latest of 5.10.x (bump from 5.10.5 which doesn't contain the fixes) Trace: sed -i 's/5.10.5/5.10.214/g' boards/*/*.config find ./boards/*/*.config | awk -F "/" {'print $3'}| while read board; do echo "make BOARD=$board linux"; make BOARD=$board linux; echo make BOARD=$board linux.save_in_oldconfig_format_in_place || make BOARD=$board linux.modify_and_save_oldconfig_in_place; done git status | grep modified | awk -F ":" {'print $2'}| xargs git add git commit --signoff - Move patches from 5.10.5 -> 5.10.214 - Add linux kernel hash and version under modules/linux - Change board configs accordingly Signed-off-by: Thierry Laurion <insurgo@riseup.net>
41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
diff --git a/scripts/check-sysctl-docs b/scripts/check-sysctl-docs
|
|
index 8bcb9e26c7bc..90137319c50a 100755
|
|
--- a/scripts/check-sysctl-docs
|
|
+++ b/scripts/check-sysctl-docs
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/gawk -f
|
|
+#!/usr/bin/env -S gawk -f
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Script to check sysctl documentation against source files
|
|
diff --git a/scripts/ld-version.sh b/scripts/ld-version.sh
|
|
index f2be0ff9a738..7a5b546ece16 100755
|
|
--- a/scripts/ld-version.sh
|
|
+++ b/scripts/ld-version.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/awk -f
|
|
+#!/usr/bin/env -S awk -f
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# extract linker version number from stdin and turn into single number
|
|
{
|
|
diff --git a/scripts/parse-maintainers.pl b/scripts/parse-maintainers.pl
|
|
index 2ca4eb3f190d..9515765158fa 100755
|
|
--- a/scripts/parse-maintainers.pl
|
|
+++ b/scripts/parse-maintainers.pl
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/perl -w
|
|
+#!/usr/bin/env -S perl -w
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
use strict;
|
|
diff --git a/scripts/ver_linux b/scripts/ver_linux
|
|
index 0968a3070eff..345b92f71d2d 100755
|
|
--- a/scripts/ver_linux
|
|
+++ b/scripts/ver_linux
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/awk -f
|
|
+#!/usr/bin/env -S awk -f
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Before running this script please ensure that your PATH is
|
|
# typical as you use for compilation/installation. I use
|