Browse Source

archiso 57-1

master
Erik Dubois 3 years ago
parent
commit
836638c0d4
  1. 2
      archiso/airootfs/etc/hostname
  2. 3
      archiso/airootfs/etc/locale.conf
  3. 3
      archiso/airootfs/etc/mkinitcpio.conf
  4. 3
      archiso/airootfs/etc/mkinitcpio.d/linux.preset
  5. 2
      archiso/airootfs/etc/motd
  6. 3
      archiso/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf
  7. 3
      archiso/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf
  8. 14
      archiso/airootfs/etc/systemd/network/20-ethernet.network
  9. 14
      archiso/airootfs/etc/systemd/network/20-wlan.network
  10. 14
      archiso/airootfs/etc/systemd/network/20-wwan.network
  11. 3
      archiso/airootfs/etc/systemd/system/choose-mirror.service
  12. 3
      archiso/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount
  13. 3
      archiso/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf
  14. 3
      archiso/airootfs/etc/systemd/system/livecd-alsa-unmuter.service
  15. 3
      archiso/airootfs/etc/systemd/system/livecd-talk.service
  16. 3
      archiso/airootfs/etc/systemd/system/pacman-init.service
  17. 6
      archiso/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf
  18. 2
      archiso/airootfs/usr/local/bin/Installation_guide
  19. 3
      archiso/efiboot/loader/entries/01-archiso-x86_64-linux.conf
  20. 3
      archiso/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf
  21. 3
      archiso/efiboot/loader/entries/03-archiso-x86_64-ram-linux.conf
  22. 3
      archiso/efiboot/loader/loader.conf
  23. 2
      archiso/packages.x86_64
  24. 3
      archiso/pacman.conf
  25. 3
      archiso/syslinux/archiso_head.cfg
  26. 3
      archiso/syslinux/archiso_pxe-linux.cfg
  27. 3
      archiso/syslinux/archiso_pxe.cfg
  28. 3
      archiso/syslinux/archiso_sys-linux.cfg
  29. 3
      archiso/syslinux/archiso_sys.cfg
  30. 3
      archiso/syslinux/archiso_tail.cfg
  31. 3
      archiso/syslinux/syslinux.cfg

2
archiso/airootfs/etc/hostname

@ -1,3 +1 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
archiso

3
archiso/airootfs/etc/locale.conf

@ -1,4 +1 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
LANG=en_US.UTF-8

3
archiso/airootfs/etc/mkinitcpio.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are

3
archiso/airootfs/etc/mkinitcpio.d/linux.preset

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
# mkinitcpio preset file for the 'linux' package on archiso
PRESETS=('archiso')

2
archiso/airootfs/etc/motd

@ -1,5 +1,5 @@
To install Arch Linux follow the installation guide:
https://wiki.archlinux.org/index.php/Installation_guide
https://wiki.archlinux.org/title/Installation_guide
For Wi-Fi, authenticate to the wireless network using the iwctl utility.
For mobile broadband (WWAN) modems, connect with the mmcli utility.

3
archiso/airootfs/etc/systemd/journald.conf.d/volatile-storage.conf

@ -1,5 +1,2 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Journal]
Storage=volatile

3
archiso/airootfs/etc/systemd/logind.conf.d/do-not-suspend.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Login]
HandleSuspendKey=ignore
HandleHibernateKey=ignore

14
archiso/airootfs/etc/systemd/network/20-ethernet.network

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Match]
Name=en*
Name=eth*
@ -9,8 +6,13 @@ Name=eth*
DHCP=yes
IPv6PrivacyExtensions=yes
# systemd-networkd does not set per-interface-type default route metrics
# https://github.com/systemd/systemd/issues/17698
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
# Use values from NetworkManager. From nm_device_get_route_metric_default in
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
[DHCPv4]
RouteMetric=512
RouteMetric=100
[DHCPv6]
RouteMetric=512
[IPv6AcceptRA]
RouteMetric=100

14
archiso/airootfs/etc/systemd/network/20-wlan.network

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Match]
Name=wl*
@ -8,8 +5,13 @@ Name=wl*
DHCP=yes
IPv6PrivacyExtensions=yes
# systemd-networkd does not set per-interface-type default route metrics
# https://github.com/systemd/systemd/issues/17698
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
# Use values from NetworkManager. From nm_device_get_route_metric_default in
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
[DHCPv4]
RouteMetric=1024
RouteMetric=600
[DHCPv6]
RouteMetric=1024
[IPv6AcceptRA]
RouteMetric=600

14
archiso/airootfs/etc/systemd/network/20-wwan.network

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Match]
Name=ww*
@ -8,8 +5,13 @@ Name=ww*
DHCP=yes
IPv6PrivacyExtensions=yes
# systemd-networkd does not set per-interface-type default route metrics
# https://github.com/systemd/systemd/issues/17698
# Explicitly set route metric, so that Ethernet is preferred over Wi-Fi and Wi-Fi is preferred over mobile broadband.
# Use values from NetworkManager. From nm_device_get_route_metric_default in
# https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/blob/main/src/core/devices/nm-device.c
[DHCPv4]
RouteMetric=2048
RouteMetric=700
[DHCPv6]
RouteMetric=2048
[IPv6AcceptRA]
RouteMetric=700

3
archiso/airootfs/etc/systemd/system/choose-mirror.service

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Unit]
Description=Choose mirror from the kernel command line
ConditionKernelCommandLine=mirror

3
archiso/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Unit]
Description=Temporary /etc/pacman.d/gnupg directory

3
archiso/airootfs/etc/systemd/system/getty@tty1.service.d/autologin.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin root --noclear %I 38400 linux

3
archiso/airootfs/etc/systemd/system/livecd-alsa-unmuter.service

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Unit]
Description=Unmute All Sound Card Controls For Use With The Live Arch Environment
# This needs to run after the audio device becomes available.

3
archiso/airootfs/etc/systemd/system/livecd-talk.service

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Unit]
Description=Screen reader service
After=livecd-alsa-unmuter.service

3
archiso/airootfs/etc/systemd/system/pacman-init.service

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
[Unit]
Description=Initializes Pacman keyring
Requires=etc-pacman.d-gnupg.mount

6
archiso/airootfs/etc/systemd/system/systemd-networkd-wait-online.service.d/wait-for-only-one-interface.conf

@ -1,6 +1,6 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
# Allow systemd-networkd-wait-online to succeed with one interface, otherwise, if multiple network interfaces exist,
# network-online.target gets needlessly delayed.
# See https://wiki.archlinux.org/title/systemd-networkd#systemd-networkd-wait-online
[Service]
ExecStart=
ExecStart=/usr/lib/systemd/systemd-networkd-wait-online --any

2
archiso/airootfs/usr/local/bin/Installation_guide

@ -2,4 +2,4 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
exec lynx 'https://wiki.archlinux.org/index.php/Installation_guide'
exec lynx 'https://wiki.archlinux.org/title/Installation_guide'

3
archiso/efiboot/loader/entries/01-archiso-x86_64-linux.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
title Arch Linux install medium (x86_64, UEFI)
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
initrd /%INSTALL_DIR%/boot/intel-ucode.img

3
archiso/efiboot/loader/entries/02-archiso-x86_64-speech-linux.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
title Arch Linux install medium (x86_64, UEFI) with speech
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
initrd /%INSTALL_DIR%/boot/intel-ucode.img

3
archiso/efiboot/loader/entries/03-archiso-x86_64-ram-linux.conf

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
title Arch Linux install medium (x86_64, UEFI, Copy to RAM)
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux
initrd /%INSTALL_DIR%/boot/intel-ucode.img

3
archiso/efiboot/loader/loader.conf

@ -1,5 +1,2 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
timeout 15
default 01-archiso-x86_64-linux.conf

2
archiso/packages.x86_64

@ -1,5 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
alsa-utils
amd-ucode
arch-install-scripts

3
archiso/pacman.conf

@ -2,8 +2,6 @@
# /etc/pacman.conf
#
# See the pacman.conf(5) manpage for option and repository directives
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
# GENERAL OPTIONS
@ -34,6 +32,7 @@ Architecture = auto
#UseSyslog
#Color
#NoProgressBar
# We cannot check disk space from within a chroot environment
#CheckSpace
#VerbosePkgLists
ParallelDownloads = 5

3
archiso/syslinux/archiso_head.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
SERIAL 0 115200
UI vesamenu.c32
MENU TITLE Arch Linux

3
archiso/syslinux/archiso_pxe-linux.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
LABEL arch64_nbd
TEXT HELP
Boot the Arch Linux install medium using NBD.

3
archiso/syslinux/archiso_pxe.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
INCLUDE archiso_head.cfg
INCLUDE archiso_pxe-linux.cfg

3
archiso/syslinux/archiso_sys-linux.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
LABEL arch64
TEXT HELP
Boot the Arch Linux install medium on BIOS.

3
archiso/syslinux/archiso_sys.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
INCLUDE archiso_head.cfg
DEFAULT arch64

3
archiso/syslinux/archiso_tail.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
LABEL existing
TEXT HELP
Boot an existing operating system.

3
archiso/syslinux/syslinux.cfg

@ -1,6 +1,3 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later
DEFAULT select
LABEL select

Loading…
Cancel
Save