We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 161495e commit 705b76bCopy full SHA for 705b76b
1 file changed
cloudlab/bin/update_linux
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
3
-# Copyright (c) 2020-2023 Homa Developers
+# Copyright (c) 2020-2026 Homa Developers
4
# SPDX-License-Identifier: BSD-1-Clause
5
6
# This script uses files on the current machine to update the kernel one
@@ -15,8 +15,8 @@
15
# (e.g. "update_linux 4 2" means node2 through node5 will be updated).
16
# "first" defaults to 1.
17
18
-v=`uname -r`
19
-#v=5.17.7+
+v="${LINUX_VERSION:-$(uname -r)}"
+echo Using version $v
20
21
if [ $# -eq 2 ]; then
22
first=$2
0 commit comments