a0244075e7
Phase 1 (Critical): - Fix broken config includes: redbear-minimal -> redbear-mini in wifi/bt experimental configs - Fix 05_boot-essential.target dependency: 00_base -> 04_drivers for correct boot ordering - Fix IOMMU service dependency: 00_base -> 05_boot-essential - Fix firmware-loader dependency: 00_base -> 05_boot-essential - Fix messagebus shell: /usr/bin/zsh -> /usr/bin/false (security) - Add offline gate to fetch-firmware.sh (REPO_OFFLINE=1 blocks network access) - Add --upstream gate to fetch-all-sources.sh (network access requires explicit opt-in) - Gate U-Boot wget calls in mk/qemu.mk with REPO_OFFLINE check - Fix patch-inclusion-gate.sh: rewrite from Python deps to pure shell implementation - Fix build-redbear.sh: remove direct patch application, let repo fetch handle it atomically Phase 2 (High): - Increase redbear-full filesystem_size: 4096 -> 8192 MiB for KDE desktop - Deprecate redbear-greeter-services.toml (orphaned, not included by any config) - Add cascade rebuild target to Makefile (make cascade.<package>) - Gate cargo-update.sh with REDBEAR_ALLOW_UPSTREAM - Add deprecation notice to apply-patches.sh - Make protected recipe list data-driven via config/protected-recipes.toml - Replace 127-entry hardcoded Rust matches! with TOML config file reader Phase 3 (Medium): - Fix 5 phantom doc references in local/AGENTS.md (retired/removed docs) - Fix stale config names: redbear-minimal -> redbear-mini across scripts - Fix duplicate references in docs/README.md - Fix run_full.sh and run_mini.sh: hardcoded paths -> relative paths + error handling
107 lines
1.8 KiB
TOML
107 lines
1.8 KiB
TOML
# Red Bear OS shared network profile wiring
|
|
#
|
|
# Shared by redbear-mini, redbear-full, and other network-enabled configs.
|
|
|
|
[[files]]
|
|
path = "/etc/netctl"
|
|
data = ""
|
|
directory = true
|
|
mode = 0o755
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples"
|
|
data = ""
|
|
directory = true
|
|
mode = 0o755
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples/wired-dhcp"
|
|
data = """
|
|
Description='Red Bear wired DHCP profile'
|
|
Interface=eth0
|
|
Connection=ethernet
|
|
IP=dhcp
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/wired-dhcp"
|
|
data = """
|
|
Description='Red Bear wired DHCP profile'
|
|
Interface=eth0
|
|
Connection=ethernet
|
|
IP=dhcp
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples/wired-static"
|
|
data = """
|
|
Description='Red Bear wired static profile'
|
|
Interface=eth0
|
|
Connection=ethernet
|
|
IP=static
|
|
Address=('192.168.1.10/24')
|
|
Gateway='192.168.1.1'
|
|
DNS=('1.1.1.1')
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples/wifi-dhcp"
|
|
data = """
|
|
Description='Red Bear Wi-Fi DHCP profile'
|
|
Interface=wlan0
|
|
Connection=wifi
|
|
SSID='example-ssid'
|
|
Security=wpa2-psk
|
|
Key='example-passphrase'
|
|
IP=dhcp
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples/wifi-open"
|
|
data = """
|
|
Description='Red Bear Wi-Fi open-network profile'
|
|
Interface=wlan0
|
|
Connection=wifi
|
|
SSID='example-open-ssid'
|
|
Security=open
|
|
IP=dhcp
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/examples/wifi-open-bounded"
|
|
data = """
|
|
Description='Red Bear Wi-Fi bounded lifecycle profile'
|
|
Interface=wlan0
|
|
Connection=wifi
|
|
SSID='example-open-ssid'
|
|
Security=open
|
|
IP=bounded
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/netctl/wifi-open-bounded"
|
|
data = """
|
|
Description='Red Bear Wi-Fi bounded lifecycle profile'
|
|
Interface=wlan0
|
|
Connection=wifi
|
|
SSID='example-open-ssid'
|
|
Security=open
|
|
IP=bounded
|
|
"""
|
|
|
|
[[files]]
|
|
path = "/etc/init.d/12_netctl.service"
|
|
data = """
|
|
[unit]
|
|
description = "Network profile application"
|
|
requires_weak = [
|
|
"10_smolnetd.service",
|
|
"10_dhcpd.service",
|
|
]
|
|
|
|
[service]
|
|
cmd = "redbear-netctl"
|
|
args = ["--boot"]
|
|
type = "oneshot_async"
|
|
"""
|