Compare commits
10 Commits
2022.10.04
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 4ebb52fff2 | |||
| 8bad586ace | |||
| bd4811c607 | |||
| bcf101a733 | |||
| be3eb3bf51 | |||
| 32cb3bac67 | |||
| a3eb72fa1c | |||
| 3645821ded | |||
| 5d85bf67dd | |||
| b5e7b3a2fc |
@ -49,7 +49,7 @@ FILES=()
|
||||
#
|
||||
## NOTE: If you have /usr on a separate partition, you MUST include the
|
||||
# usr, fsck and shutdown hooks.
|
||||
HOOKS=(base udev modconf memdisk archiso_shutdown archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs archiso_kms block filesystems keyboard)
|
||||
HOOKS=(base udev modconf kms memdisk archiso archiso_loop_mnt archiso_pxe_common archiso_pxe_nbd archiso_pxe_http archiso_pxe_nfs block filesystems keyboard)
|
||||
|
||||
# COMPRESSION
|
||||
# Use this to compress the initramfs image. By default, gzip compression
|
||||
|
||||
@ -9,4 +9,4 @@ Description = Add instructions for startx
|
||||
When = PostTransaction
|
||||
Depends = xorg-xinit
|
||||
Depends = sh
|
||||
Exec = /bin/sh -c 'echo -e \\nTo start GUI, type \\033\[0\;35mstartx\\033\[0\;0m.\\n >> /etc/motd'
|
||||
Exec = /bin/sh -c 'echo -e \\nTo start GUI, type \\033\[0\;35mstartx\\033\[0\;0m or \\033\[0\;35mstartwayland\\033\[0\;0m.\\n >> /etc/motd'
|
||||
|
||||
@ -61,7 +61,7 @@ immutability=1
|
||||
plugin=org.kde.plasma.icontasks
|
||||
|
||||
[Containments][2][Applets][5][Configuration][General]
|
||||
launchers=applications:systemsettings.desktop,preferred://filemanager,preferred://browser
|
||||
launchers=applications:systemsettings.desktop,preferred://filemanager,preferred://browser,applications:org.kde.konsole.desktop
|
||||
|
||||
[Containments][2][Applets][6]
|
||||
immutability=1
|
||||
|
||||
2
airootfs/usr/local/bin/startwayland
Executable file
2
airootfs/usr/local/bin/startwayland
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
dbus-run-session startplasma-wayland
|
||||
75
grub/grub.cfg
Normal file
75
grub/grub.cfg
Normal file
@ -0,0 +1,75 @@
|
||||
# Load partition table and file system modules
|
||||
insmod part_gpt
|
||||
insmod part_msdos
|
||||
insmod fat
|
||||
insmod iso9660
|
||||
|
||||
# Use graphics-mode output
|
||||
insmod all_video
|
||||
insmod font
|
||||
if loadfont "${prefix}/fonts/unicode.pf2" ; then
|
||||
insmod gfxterm
|
||||
set gfxmode="auto"
|
||||
terminal_input console
|
||||
terminal_output gfxterm
|
||||
fi
|
||||
|
||||
# Enable serial console
|
||||
if serial --unit=0 --speed=115200; then
|
||||
terminal_input --append serial
|
||||
terminal_output --append serial
|
||||
fi
|
||||
|
||||
# Set default menu entry
|
||||
default=archlinux
|
||||
timeout=15
|
||||
timeout_style=menu
|
||||
|
||||
# GRUB init tune for accessibility
|
||||
play 600 988 1 1319 4
|
||||
|
||||
# Menu entries
|
||||
|
||||
menuentry "Arch Linux install medium (x86_64, UEFI)" --class arch --class gnu-linux --class gnu --class os --id 'archlinux' {
|
||||
set gfxpayload=keep
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=1G
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
}
|
||||
|
||||
menuentry "Arch Linux install medium with speakup screen reader (x86_64, UEFI)" --hotkey s --class arch --class gnu-linux --class gnu --class os --id 'archlinux-accessibility' {
|
||||
set gfxpayload=keep
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
linux /%INSTALL_DIR%/boot/x86_64/vmlinuz-linux archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% cow_spacesize=1G accessibility=on
|
||||
initrd /%INSTALL_DIR%/boot/intel-ucode.img /%INSTALL_DIR%/boot/amd-ucode.img /%INSTALL_DIR%/boot/x86_64/initramfs-linux.img
|
||||
}
|
||||
|
||||
if [ "${grub_platform}" == "efi" ]; then
|
||||
if [ "${grub_cpu}" == "x86_64" ]; then
|
||||
menuentry "UEFI Shell" {
|
||||
insmod chain
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
chainloader /shellx64.efi
|
||||
}
|
||||
elif [ "${grub_cpu}" == "i386" ]; then
|
||||
menuentry "UEFI Shell" {
|
||||
insmod chain
|
||||
search --no-floppy --set=root --label %ARCHISO_LABEL%
|
||||
chainloader /shellia32.efi
|
||||
}
|
||||
fi
|
||||
|
||||
menuentry 'UEFI Firmware Settings' --id 'uefi-firmware' {
|
||||
fwsetup
|
||||
}
|
||||
fi
|
||||
|
||||
menuentry "System shutdown" --class shutdown --class poweroff {
|
||||
echo "System shutting down..."
|
||||
halt
|
||||
}
|
||||
|
||||
menuentry "System restart" --class reboot --class restart {
|
||||
echo "System rebooting..."
|
||||
reboot
|
||||
}
|
||||
@ -6,7 +6,7 @@ b43-fwcutter
|
||||
base
|
||||
bind-tools
|
||||
brltty
|
||||
broadcom-wl
|
||||
broadcom-wl-dkms
|
||||
btrfs-progs
|
||||
clonezilla
|
||||
cloud-init
|
||||
@ -29,7 +29,7 @@ exfatprogs
|
||||
f2fs-tools
|
||||
fatresize
|
||||
fsarchiver
|
||||
gnu-netcat
|
||||
openbsd-netcat
|
||||
gpart
|
||||
gpm
|
||||
gptfdisk
|
||||
@ -82,7 +82,6 @@ pptpclient
|
||||
pv
|
||||
qemu-guest-agent
|
||||
reflector
|
||||
reiserfsprogs
|
||||
rp-pppoe
|
||||
rsync
|
||||
rxvt-unicode-terminfo
|
||||
@ -140,4 +139,7 @@ plasma-nm
|
||||
firefox
|
||||
firefox-i18n-en-us
|
||||
firefox-i18n-ru
|
||||
gparted
|
||||
gparted
|
||||
grub
|
||||
kwin-x11
|
||||
kscreen
|
||||
|
||||
@ -8,7 +8,9 @@ iso_application="Arch Linux Live/Rescue CD"
|
||||
iso_version="$(date +%Y.%m.%d)"
|
||||
install_dir="arch"
|
||||
buildmodes=('iso')
|
||||
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
|
||||
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
|
||||
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
|
||||
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito')
|
||||
arch="x86_64"
|
||||
pacman_conf="pacman.conf"
|
||||
airootfs_image_type="squashfs"
|
||||
@ -20,4 +22,5 @@ file_permissions=(
|
||||
["/usr/local/bin/choose-mirror"]="0:0:755"
|
||||
["/usr/local/bin/Installation_guide"]="0:0:755"
|
||||
["/usr/local/bin/livecd-sound"]="0:0:755"
|
||||
["/usr/local/bin/startwayland"]="0:0:755"
|
||||
)
|
||||
|
||||
@ -6,7 +6,7 @@ b43-fwcutter
|
||||
base
|
||||
bind-tools
|
||||
brltty
|
||||
broadcom-wl
|
||||
broadcom-wl-dkms
|
||||
btrfs-progs
|
||||
clonezilla
|
||||
cloud-init
|
||||
@ -29,7 +29,7 @@ exfatprogs
|
||||
f2fs-tools
|
||||
fatresize
|
||||
fsarchiver
|
||||
gnu-netcat
|
||||
openbsd-netcat
|
||||
gpart
|
||||
gpm
|
||||
gptfdisk
|
||||
@ -82,7 +82,6 @@ pptpclient
|
||||
pv
|
||||
qemu-guest-agent
|
||||
reflector
|
||||
reiserfsprogs
|
||||
rp-pppoe
|
||||
rsync
|
||||
rxvt-unicode-terminfo
|
||||
@ -119,3 +118,4 @@ zsh
|
||||
linux-headers
|
||||
zfs-dkms
|
||||
ncdu
|
||||
grub
|
||||
|
||||
@ -8,7 +8,9 @@ iso_application="Arch Linux Live/Rescue CD"
|
||||
iso_version="$(date +%Y.%m.%d)"
|
||||
install_dir="arch"
|
||||
buildmodes=('iso')
|
||||
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
|
||||
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
|
||||
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
|
||||
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito')
|
||||
arch="x86_64"
|
||||
pacman_conf="pacman.conf"
|
||||
airootfs_image_type="squashfs"
|
||||
@ -20,4 +22,5 @@ file_permissions=(
|
||||
["/usr/local/bin/choose-mirror"]="0:0:755"
|
||||
["/usr/local/bin/Installation_guide"]="0:0:755"
|
||||
["/usr/local/bin/livecd-sound"]="0:0:755"
|
||||
["/usr/local/bin/startwayland"]="0:0:755"
|
||||
)
|
||||
|
||||
18
pacman.conf
18
pacman.conf
@ -79,12 +79,6 @@ Include = /etc/pacman.d/mirrorlist
|
||||
[extra]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
#[community-testing]
|
||||
#Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
[community]
|
||||
Include = /etc/pacman.d/mirrorlist
|
||||
|
||||
# If you want to run 32 bit applications on your x86_64 system,
|
||||
# enable the multilib repositories as required here.
|
||||
|
||||
@ -101,13 +95,5 @@ Include = /etc/pacman.d/mirrorlist
|
||||
#Server = file:///home/custompkgs
|
||||
|
||||
[archzfs]
|
||||
# Origin Server - France
|
||||
Server = http://archzfs.com/$repo/x86_64
|
||||
# Mirror - Germany
|
||||
Server = http://mirror.sum7.eu/archlinux/archzfs/$repo/x86_64
|
||||
# Mirror - Germany
|
||||
Server = https://mirror.biocrafting.net/archlinux/archzfs/$repo/x86_64
|
||||
# Mirror - India
|
||||
Server = https://mirror.in.themindsmaze.com/archzfs/$repo/x86_64
|
||||
# Mirror - US
|
||||
Server = https://zxcvfdsa.com/archzfs/$repo/$arch
|
||||
SigLevel = Required
|
||||
Server = https://github.com/archzfs/archzfs/releases/download/experimental
|
||||
Loading…
Reference in New Issue
Block a user