Enhance README and build scripts for hardware-specific optimizations

- 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.
This commit is contained in:
Dorian
2026-01-31 19:47:52 +00:00
parent 7069b20064
commit ba1a7bd3f6
40 changed files with 4780 additions and 85 deletions
+6 -2
View File
@@ -54,9 +54,13 @@ fi
# Copy custom profile
echo "📝 Setting up custom Archipelago profile..."
PROFILE_DIR="$APORTS_DIR/scripts/mkimg.archipelago"
# Copy profile script to Alpine scripts directory (force overwrite)
cp -f "$SCRIPT_DIR/alpine-profile/mkimg.archipelago.sh" "$APORTS_DIR/scripts/"
# Copy overlay files
PROFILE_DIR="$APORTS_DIR/scripts/mkimg.archipelago.d"
mkdir -p "$PROFILE_DIR"
cp -r "$SCRIPT_DIR/alpine-profile/"* "$PROFILE_DIR/" 2>/dev/null || true
cp -r "$SCRIPT_DIR/alpine-profile/overlay" "$PROFILE_DIR/" 2>/dev/null || true
# Build ISO or disk image
cd "$APORTS_DIR/scripts"