From: Michael Tremer <michael.tremer@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] OCI: Enable serial console by default
Date: Thu, 14 Oct 2021 12:00:31 +0000 [thread overview]
Message-ID: <20211014120031.11989-1-michael.tremer@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1589 bytes --]
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
config/grub2/00_cloud | 8 ++++++++
src/initscripts/system/partresize | 6 +++---
2 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/config/grub2/00_cloud b/config/grub2/00_cloud
index 121cb2fbd..1ef5053e5 100644
--- a/config/grub2/00_cloud
+++ b/config/grub2/00_cloud
@@ -23,8 +23,16 @@ cat <<EOF
# Read the system manufacturer string from the BIOS
smbios --type 1 --get-string 4 --set system_manufacturer
+# Read the chassis asset tag
+smbios --type 3 --get-string 8 --set chassis_asset_tag
+
# Are we on Amazon EC2?
if [ "\$system_manufacturer" = "Amazon EC2" ]; then
next_entry=gnulinux-${KERNEL_RELEASE}-serial-${boot_device_id}
fi
+
+# Are we on Oracle Cloud?
+if [ "\$chassis_asset_tag" = "OracleCloud.com" ]; then
+ next_entry=gnulinux-${KERNEL_RELEASE}-serial-${boot_device_id}
+fi
EOF
diff --git a/src/initscripts/system/partresize b/src/initscripts/system/partresize
index 4fa1906d0..2206ca451 100644
--- a/src/initscripts/system/partresize
+++ b/src/initscripts/system/partresize
@@ -45,9 +45,9 @@ case "${1}" in
esac
fi
- # Enable the serial console on all systems on AWS EC2, Azure
- # and Google Compute Platform
- if running_on_ec2 || running_on_azure || running_on_gcp; then
+ # Enable the serial console on all systems on AWS EC2, Oracle Cloud,
+ # Azure and Google Compute Platform
+ if running_on_ec2 || running_on_oci || running_on_azure || running_on_gcp; then
scon="on"
fi
--
2.20.1
reply other threads:[~2021-10-14 12:00 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20211014120031.11989-1-michael.tremer@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox