- Updated README.md to clarify development setup for macOS/Docker and added production build instructions for specific hardware. - Introduced new build scripts for optimized OS images targeting Start9 Server Pure, HP ProDesk 400 G4 DM, and Dell OptiPlex. - Enhanced Dockerfile to specify platform compatibility and improved Alpine profile for Archipelago builds. - Updated configuration files and init scripts to support new hardware profiles and ensure proper service management.
22 lines
543 B
Bash
Executable File
22 lines
543 B
Bash
Executable File
#!/bin/sh
|
|
# First boot hardware detection and optimization
|
|
|
|
HARDWARE_INFO="/etc/archipelago/hardware-info.sh"
|
|
|
|
if [ -x "$HARDWARE_INFO" ]; then
|
|
echo "🔍 Detecting hardware..."
|
|
$HARDWARE_INFO > /var/log/archipelago-hardware.log 2>&1
|
|
echo "✓ Hardware detection complete"
|
|
fi
|
|
|
|
# Create system info file
|
|
cat > /etc/archipelago/system-info.txt <<INFO
|
|
Archipelago OS System Information
|
|
Generated: $(date)
|
|
|
|
$(cat /etc/archipelago/hardware.toml 2>/dev/null)
|
|
|
|
Runtime Detection:
|
|
$(cat /var/log/archipelago-hardware.log 2>/dev/null)
|
|
INFO
|