Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: modprobe vfat/nls before USB mount, 10 retries

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+5 -2
+5 -2
fedac/native/initramfs/init
··· 52 52 export HOME="/tmp" 53 53 54 54 # ── Mount USB EFI partition (for config.json, wifi_creds.json, logs) ── 55 - # Retry a few times — USB devices may take a moment to appear 55 + # Load filesystem modules and retry — USB takes time to appear 56 + modprobe vfat 2>/dev/null 57 + modprobe nls_cp437 2>/dev/null 58 + modprobe nls_ascii 2>/dev/null 56 59 USB_MOUNTED=0 57 - for attempt in 1 2 3 4 5; do 60 + for attempt in 1 2 3 4 5 6 7 8 9 10; do 58 61 for p in /dev/sda1 /dev/sdb1 /dev/sdc1 /dev/sdd1 /dev/nvme0n1p1; do 59 62 if [ -b "$p" ]; then 60 63 mkdir -p /mnt