diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-19 18:15:02 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-19 18:15:02 -0600 |
| commit | 906cc6f2186f2120bbbf85638dbdcde32645ded6 (patch) | |
| tree | 8ce2712ffe53b703f0021b4c6d382fe1af593bb6 /custom | |
| parent | 91ddff96937307a3ae7f5b4e97f072cc390c2119 (diff) | |
| download | archangel-906cc6f2186f2120bbbf85638dbdcde32645ded6.tar.gz archangel-906cc6f2186f2120bbbf85638dbdcde32645ded6.zip | |
Add Avahi mDNS for easy SSH access, fix ISP firmware path
- Add avahi and nss-mdns packages to live ISO
- Enable avahi-daemon.service for mDNS discovery
- Set hostname to "archzfs" so machines are accessible at archzfs.local
- Fix ISP firmware path in install-archzfs: remove /mnt prefix for chroot
Diffstat (limited to 'custom')
| -rwxr-xr-x | custom/install-archzfs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/custom/install-archzfs b/custom/install-archzfs index 3987060..c604868 100755 --- a/custom/install-archzfs +++ b/custom/install-archzfs @@ -1027,12 +1027,14 @@ configure_initramfs() { local isp_firmware isp_firmware=$(ls /mnt/usr/lib/firmware/amdgpu/isp_*.bin.zst 2>/dev/null | head -1) if [[ -n "$isp_firmware" ]]; then + # Remove /mnt prefix - config is used inside chroot where root is / + local chroot_path="${isp_firmware#/mnt}" info "AMD APU detected with ISP firmware - adding to initramfs" mkdir -p /mnt/etc/mkinitcpio.conf.d cat > /mnt/etc/mkinitcpio.conf.d/amd-isp.conf << EOF # AMD ISP (Image Signal Processor) firmware for camera support # Loaded early so amdgpu can initialize ISP before root is mounted -FILES+=($isp_firmware) +FILES+=($chroot_path) EOF fi fi |
