From 4fe0a32ee9720da5cfbcc2212e97e122909b12e2 Mon Sep 17 00:00:00 2001 From: Vasilito Date: Tue, 21 Apr 2026 16:15:16 +0100 Subject: [PATCH] Add GRUB variants for live and minimal profiles Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- config/redbear-live-full-grub.toml | 6 ++++++ config/redbear-live-mini-grub.toml | 6 ++++++ config/redbear-live-minimal-grub.toml | 6 ++++++ config/redbear-minimal-grub.toml | 6 ++++++ 4 files changed, 24 insertions(+) create mode 100644 config/redbear-live-full-grub.toml create mode 100644 config/redbear-live-mini-grub.toml create mode 100644 config/redbear-live-minimal-grub.toml create mode 100644 config/redbear-minimal-grub.toml diff --git a/config/redbear-live-full-grub.toml b/config/redbear-live-full-grub.toml new file mode 100644 index 00000000..a3b6ea12 --- /dev/null +++ b/config/redbear-live-full-grub.toml @@ -0,0 +1,6 @@ +# Red Bear OS Live Full Configuration with GRUB Boot Manager +# Live ISO for full desktop/session target with installer-native GRUB chainload. +# +# Build: make live CONFIG_NAME=redbear-live-full-grub + +include = ["redbear-live-full.toml", "redbear-grub.toml"] diff --git a/config/redbear-live-mini-grub.toml b/config/redbear-live-mini-grub.toml new file mode 100644 index 00000000..d2ea8049 --- /dev/null +++ b/config/redbear-live-mini-grub.toml @@ -0,0 +1,6 @@ +# Red Bear OS Live Mini Configuration with GRUB Boot Manager +# Live ISO for stripped console/recovery target with installer-native GRUB chainload. +# +# Build: make live CONFIG_NAME=redbear-live-mini-grub + +include = ["redbear-live-mini.toml", "redbear-grub.toml"] diff --git a/config/redbear-live-minimal-grub.toml b/config/redbear-live-minimal-grub.toml new file mode 100644 index 00000000..b4468808 --- /dev/null +++ b/config/redbear-live-minimal-grub.toml @@ -0,0 +1,6 @@ +# Red Bear OS Live Minimal Configuration with GRUB Boot Manager +# Live ISO for minimal console target with installer-native GRUB chainload. +# +# Build: make live CONFIG_NAME=redbear-live-minimal-grub + +include = ["redbear-live-minimal.toml", "redbear-grub.toml"] diff --git a/config/redbear-minimal-grub.toml b/config/redbear-minimal-grub.toml new file mode 100644 index 00000000..11cffee3 --- /dev/null +++ b/config/redbear-minimal-grub.toml @@ -0,0 +1,6 @@ +# Red Bear OS Minimal Configuration with GRUB Boot Manager +# Minimal console/server target with installer-native GRUB chainload. +# +# Build: make all CONFIG_NAME=redbear-minimal-grub + +include = ["redbear-minimal.toml", "redbear-grub.toml"]