From c974b48e2e4335c3534f0920a0cf2a81aa0376af Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 12 Jun 2023 14:45:41 -0400 Subject: [PATCH 1/9] build-x86-images: remove duplicate line this was probably from resolving a merge conflict, it's basically a NOP --- build-x86-images.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/build-x86-images.sh b/build-x86-images.sh index d4ed3cad58..04efa0ae6b 100755 --- a/build-x86-images.sh +++ b/build-x86-images.sh @@ -41,7 +41,6 @@ build_variant() { shift IMG=void-live-${ARCH}-${DATE}-${variant}.iso GRUB_PKGS="grub-i386-efi grub-x86_64-efi" - PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror $GRUB_PKGS" PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror espeakup $GRUB_PKGS" XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf alsa-plugins-pulseaudio" SERVICES="sshd" From 687d1c6d56706d8eb5f49b6e60e70fbdefe615f8 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 12 Jun 2023 14:46:54 -0400 Subject: [PATCH 2/9] mklive: add memtest86+ to images closes #346 also add reboot and poweroff syslinux files for menuentries --- mklive.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mklive.sh b/mklive.sh index 8f1e85486f..a83bbae3df 100755 --- a/mklive.sh +++ b/mklive.sh @@ -31,7 +31,7 @@ umask 022 . ./lib.sh -readonly REQUIRED_PKGS="base-files libgcc dash coreutils sed tar gawk syslinux grub-i386-efi grub-x86_64-efi squashfs-tools xorriso" +readonly REQUIRED_PKGS="base-files libgcc dash coreutils sed tar gawk syslinux grub-i386-efi grub-x86_64-efi memtest86+ squashfs-tools xorriso" readonly INITRAMFS_PKGS="binutils xz device-mapper dhclient dracut-network openresolv" readonly PROGNAME=$(basename "$0") declare -a INCLUDE_DIRS=() @@ -189,6 +189,8 @@ generate_isolinux_boot() { cp -f "$SYSLINUX_DATADIR"/vesamenu.c32 "$ISOLINUX_DIR" cp -f "$SYSLINUX_DATADIR"/libutil.c32 "$ISOLINUX_DIR" cp -f "$SYSLINUX_DATADIR"/chain.c32 "$ISOLINUX_DIR" + cp -f "$SYSLINUX_DATADIR"/reboot.c32 "$ISOLINUX_DIR" + cp -f "$SYSLINUX_DATADIR"/poweroff.c32 "$ISOLINUX_DIR" cp -f isolinux/isolinux.cfg.in "$ISOLINUX_DIR"/isolinux.cfg cp -f ${SPLASH_IMAGE} "$ISOLINUX_DIR" @@ -200,6 +202,9 @@ generate_isolinux_boot() { -e "s|@@BOOT_TITLE@@|${BOOT_TITLE}|" \ -e "s|@@BOOT_CMDLINE@@|${BOOT_CMDLINE}|" \ "$ISOLINUX_DIR"/isolinux.cfg + + # include memtest86+ + cp -f "$VOIDHOSTDIR"/boot/memtest.bin "$BOOT_DIR" } generate_grub_efi_boot() { @@ -252,6 +257,9 @@ generate_grub_efi_boot() { umount "$GRUB_EFI_TMPDIR" losetup --detach "${LOOP_DEVICE}" rm -rf "$GRUB_EFI_TMPDIR" + + # include memtest86+ + cp -f "$VOIDHOSTDIR"/boot/memtest.efi "$BOOT_DIR" } generate_squashfs() { From c7e4e4503357ff464bdc7954aed52675b0969a3a Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 12 Jun 2023 14:54:10 -0400 Subject: [PATCH 3/9] dracut/vmklive: rename live.screenreader to live.accessibility --- README.md | 2 +- dracut/vmklive/{screenreader.sh => accessibility.sh} | 2 +- dracut/vmklive/module-setup.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename dracut/vmklive/{screenreader.sh => accessibility.sh} (75%) diff --git a/README.md b/README.md index 0f39b795c9..e56faeff62 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ that can change the behavior of the live system: - `live.autologin` will skip the initial login screen on `tty1`. - `live.user` will change the username of the non-root user from the default `anon`. The password remains `voidlinux`. - `live.shell` sets the default shell for the non-root user in the live environment. -- `live.screenreader` enables the console screenreader `espeakup` in the live environment. +- `live.accessibility` enables accessibility features like the console screenreader `espeakup` in the live environment. - `console` can be set to `ttyS0`, `hvc0`, or `hvsi0` to enable `agetty` on that serial console. - `locale.LANG` will set the `LANG` environment variable. Defaults to `en_US.UTF-8`. - `vconsole.keymap` will set the console keymap. Defaults to `us`. diff --git a/dracut/vmklive/screenreader.sh b/dracut/vmklive/accessibility.sh similarity index 75% rename from dracut/vmklive/screenreader.sh rename to dracut/vmklive/accessibility.sh index d4e411a2a8..304ad1d5a7 100644 --- a/dracut/vmklive/screenreader.sh +++ b/dracut/vmklive/accessibility.sh @@ -4,6 +4,6 @@ type getargbool >/dev/null 2>&1 || . /lib/dracut-lib.sh -if getargbool 0 live.screenreader && [ -d "${NEWROOT}/etc/sv/espeakup" ]; then +if getargbool 0 live.accessibility && [ -d "${NEWROOT}/etc/sv/espeakup" ]; then ln -s /etc/sv/espeakup "${NEWROOT}/etc/runit/runsvdir/current/" fi diff --git a/dracut/vmklive/module-setup.sh b/dracut/vmklive/module-setup.sh index 3d5f4f6c96..a95701d676 100644 --- a/dracut/vmklive/module-setup.sh +++ b/dracut/vmklive/module-setup.sh @@ -27,5 +27,5 @@ install() { inst_hook pre-pivot 02 "$moddir/display-manager-autologin.sh" inst_hook pre-pivot 02 "$moddir/getty-serial.sh" inst_hook pre-pivot 03 "$moddir/locale.sh" - inst_hook pre-pivot 04 "$moddir/screenreader.sh" + inst_hook pre-pivot 04 "$moddir/accessibility.sh" } From 9e27417184747a8c94fa549e855aa055346af929 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 12 Jun 2023 14:54:52 -0400 Subject: [PATCH 4/9] isolinux: add menu entries for screenreader, memtest, reboot, poweroff - set timeout to 15 seconds - screenreader option can be selected with `s` hotkey --- isolinux/isolinux.cfg.in | 36 ++++++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/isolinux/isolinux.cfg.in b/isolinux/isolinux.cfg.in index 69de967d8c..8535322568 100644 --- a/isolinux/isolinux.cfg.in +++ b/isolinux/isolinux.cfg.in @@ -1,6 +1,6 @@ UI vesamenu.c32 PROMPT 0 -TIMEOUT 100 +TIMEOUT 150 ONTIMEOUT linux MENU TABMSG Press ENTER to boot or TAB to edit a menu entry @@ -8,13 +8,13 @@ MENU AUTOBOOT BIOS default device boot in # second{,s}... MENU BACKGROUND @@SPLASHIMAGE@@ MENU WIDTH 78 MENU MARGIN 1 -MENU ROWS 4 +MENU ROWS 9 MENU VSHIFT 2 -MENU TIMEOUTROW 8 +MENU TIMEOUTROW 13 MENU TABMSGROW 2 -MENU CMDLINEROW 11 -MENU HELPMSGROW 16 -MENU HELPMSGENDROW 29 +MENU CMDLINEROW 16 +MENU HELPMSGROW 20 +MENU HELPMSGENDROW 34 MENU COLOR title * #FF5255FF * MENU COLOR border * #00000000 #00000000 none @@ -24,11 +24,35 @@ LABEL linux MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ KERNEL /boot/vmlinuz APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ + LABEL linuxram MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ (RAM) KERNEL /boot/vmlinuz APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ rd.live.ram + +LABEL linuxa11y +MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ with ^speech +KERNEL /boot/vmlinuz +APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin + +LABEL linuxa11yram +MENU LABEL @@BOOT_TITLE@@ @@KERNVER@@ @@ARCH@@ with speech (^RAM) +KERNEL /boot/vmlinuz +APPEND initrd=/boot/initrd root=live:CDLABEL=VOID_LIVE init=/sbin/init ro rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin rd.live.ram + LABEL c MENU LABEL Boot first HD found by BIOS COM32 chain.c32 APPEND hd0 + +LABEL memtest +MENU LABEL Run Memtest86+ (RAM test) +LINUX /boot/memtest.bin + +LABEL reboot +MENU LABEL Reboot +COM32 reboot.c32 + +LABEL poweroff +MENU LABEL Power Off +COM32 poweroff.c32 From 9efe90690a0cbf33a6c27a4655bf1956a6208359 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Mon, 12 Jun 2023 14:55:46 -0400 Subject: [PATCH 5/9] grub: add menu entries for screenreader, memtest, efi fw setup, reboot, poweroff - also clean up indentation - set timeout to 15 seconds - play a sound on pc speaker when at grub menu, for accessibility - screenreader option can be selected with `s` hotkey --- grub/grub_void.cfg.in | 96 ++++++++++++++++++++++++++++++++----------- 1 file changed, 73 insertions(+), 23 deletions(-) diff --git a/grub/grub_void.cfg.in b/grub/grub_void.cfg.in index a2cda855ff..7d82de49cf 100644 --- a/grub/grub_void.cfg.in +++ b/grub/grub_void.cfg.in @@ -3,44 +3,94 @@ set pager="1" set locale_dir="(${voidlive})/boot/grub/locale" if [ -e "${prefix}/${grub_cpu}-${grub_platform}/all_video.mod" ]; then - insmod all_video + insmod all_video else - insmod efi_gop - insmod efi_uga - insmod video_bochs - insmod video_cirrus + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus fi insmod font if loadfont "(${voidlive})/boot/grub/fonts/unicode.pf2" ; then - insmod gfxterm - set gfxmode="auto" - - terminal_input console - terminal_output gfxterm - - insmod png - background_image "(${voidlive})/boot/isolinux/@@SPLASHIMAGE@@" + insmod gfxterm + set gfxmode="auto" + + terminal_input console + terminal_output gfxterm + + insmod png + background_image "(${voidlive})/boot/isolinux/@@SPLASHIMAGE@@" fi +# Set default menu entry +default=linux +timeout=15 +timeout_style=menu + +# GRUB init tune for accessibility +play 600 988 1 1319 4 + if [ cpuid -l ]; then - menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@)" { - set gfxpayload="keep" - linux (${voidlive})/boot/vmlinuz \ + menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@)" --id "linux" { + set gfxpayload="keep" + linux (${voidlive})/boot/vmlinuz \ root=live:CDLABEL=VOID_LIVE ro init=/sbin/init \ rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \ vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ - initrd (${voidlive})/boot/initrd - } - menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@) (RAM)" { - set gfxpayload="keep" - linux (${voidlive})/boot/vmlinuz \ + initrd (${voidlive})/boot/initrd + } + menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@) (RAM)" --id "linuxram" { + set gfxpayload="keep" + linux (${voidlive})/boot/vmlinuz \ root=live:CDLABEL=VOID_LIVE ro init=/sbin/init \ rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \ vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \ locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ rd.live.ram - initrd (${voidlive})/boot/initrd - } + initrd (${voidlive})/boot/initrd + } + menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@) with speech" --hotkey s --id "linuxa11y" { + set gfxpayload="keep" + linux (${voidlive})/boot/vmlinuz \ + root=live:CDLABEL=VOID_LIVE ro init=/sbin/init \ + rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \ + vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \ + locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin + initrd (${voidlive})/boot/initrd + } + menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@) with speech (RAM)" --hotkey r --id "linuxa11yram" { + set gfxpayload="keep" + linux (${voidlive})/boot/vmlinuz \ + root=live:CDLABEL=VOID_LIVE ro init=/sbin/init \ + rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \ + vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \ + locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ live.accessibility live.autologin rd.live.ram + initrd (${voidlive})/boot/initrd + } + if [ "${grub_platform}" == "efi" ]; then + menuentry "Run Memtest86+ (RAM test)" --id memtest { + set gfxpayload="keep" + linux (${voidlive})/boot/memtest.efi + } + menuentry 'UEFI Firmware Settings' --id uefifw { + fwsetup + } + else + menuentry "Run Memtest86+ (RAM test)" --id memtest { + set gfxpayload="keep" + linux (${voidlive})/boot/memtest.bin + } + fi + + menuentry "System restart" --id restart { + echo "System rebooting..." + reboot + } + + menuentry "System shutdown" --id poweroff { + echo "System shutting down..." + halt + } fi From fdb9d833a762f7afc4057ccf74ad2f2db15bca1e Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 24 Jun 2023 23:35:24 -0400 Subject: [PATCH 6/9] build-x86-images.sh: add void-live-audio for a11y audio setup --- build-x86-images.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-x86-images.sh b/build-x86-images.sh index 04efa0ae6b..b84b34d33f 100755 --- a/build-x86-images.sh +++ b/build-x86-images.sh @@ -41,7 +41,8 @@ build_variant() { shift IMG=void-live-${ARCH}-${DATE}-${variant}.iso GRUB_PKGS="grub-i386-efi grub-x86_64-efi" - PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror espeakup $GRUB_PKGS" + A11Y_PKGS="espeakup void-live-audio" + PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror $A11Y_PKGS $GRUB_PKGS" XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf alsa-plugins-pulseaudio" SERVICES="sshd" From 2f4341ee50b7192a4fb582ada2bd7a87e55e51a6 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sat, 24 Jun 2023 23:46:18 -0400 Subject: [PATCH 7/9] build-x86-images, dracut/vmklive, installer: add support for brltty --- build-x86-images.sh | 2 +- dracut/vmklive/accessibility.sh | 5 +++-- installer.sh | 5 ++++- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/build-x86-images.sh b/build-x86-images.sh index b84b34d33f..ff4f38ee3e 100755 --- a/build-x86-images.sh +++ b/build-x86-images.sh @@ -41,7 +41,7 @@ build_variant() { shift IMG=void-live-${ARCH}-${DATE}-${variant}.iso GRUB_PKGS="grub-i386-efi grub-x86_64-efi" - A11Y_PKGS="espeakup void-live-audio" + A11Y_PKGS="espeakup void-live-audio brltty" PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror $A11Y_PKGS $GRUB_PKGS" XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf alsa-plugins-pulseaudio" SERVICES="sshd" diff --git a/dracut/vmklive/accessibility.sh b/dracut/vmklive/accessibility.sh index 304ad1d5a7..8f231d9b42 100644 --- a/dracut/vmklive/accessibility.sh +++ b/dracut/vmklive/accessibility.sh @@ -4,6 +4,7 @@ type getargbool >/dev/null 2>&1 || . /lib/dracut-lib.sh -if getargbool 0 live.accessibility && [ -d "${NEWROOT}/etc/sv/espeakup" ]; then - ln -s /etc/sv/espeakup "${NEWROOT}/etc/runit/runsvdir/current/" +if getargbool 0 live.accessibility; then + [ -d "${NEWROOT}/etc/sv/espeakup" ] && ln -s "/etc/sv/espeakup" "${NEWROOT}/etc/runit/runsvdir/current/" + [ -d "${NEWROOT}/etc/sv/brltty" ] && ln -s "/etc/sv/brltty" "${NEWROOT}/etc/runit/runsvdir/current/" fi diff --git a/installer.sh b/installer.sh index 558f20c3ac..69435226d3 100755 --- a/installer.sh +++ b/installer.sh @@ -1325,10 +1325,13 @@ ${BOLD}Do you want to continue?${RESET}" 20 80 || return INFOBOX "Removing temporary packages from target ..." 4 60 echo "Removing temporary packages from target ..." >$LOG TO_REMOVE="dialog xtools-minimal" - # only remove espeakup if it wasn't enabled in the live environment + # only remove espeakup and brltty if it wasn't enabled in the live environment if ! [ -e "/var/service/espeakup" ]; then TO_REMOVE+=" espeakup" fi + if ! [ -e "/var/service/brltty" ]; then + TO_REMOVE+=" brltty" + fi xbps-remove -r $TARGETDIR -Ry $TO_REMOVE >>$LOG 2>&1 rmdir $TARGETDIR/mnt/target else From 8bbe8e8bb02c3140b9302152c1811597b3f8e0e5 Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sun, 25 Jun 2023 03:16:04 -0400 Subject: [PATCH 8/9] build-x86-images.sh: switch to pipewire on non-base images closes #301 --- build-x86-images.sh | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/build-x86-images.sh b/build-x86-images.sh index ff4f38ee3e..94ef0b3284 100755 --- a/build-x86-images.sh +++ b/build-x86-images.sh @@ -36,6 +36,18 @@ cleanup() { rm -r "$INCLUDEDIR" } +setup_pipewire() { + PKGS="$PKGS pipewire alsa-pipewire" + mkdir -p "$INCLUDEDIR"/etc/xdg/autostart + ln -s /usr/share/applications/pipewire.desktop "$INCLUDEDIR"/etc/xdg/autostart/ + mkdir -p "$INCLUDEDIR"/etc/pipewire/pipewire.conf.d + ln -s /usr/share/examples/wireplumber/10-wireplumber.conf "$INCLUDEDIR"/etc/pipewire/pipewire.conf.d/ + ln -s /usr/share/examples/pipewire/20-pipewire-pulse.conf "$INCLUDEDIR"/etc/pipewire/pipewire.conf.d/ + mkdir -p "$INCLUDEDIR"/etc/alsa/conf.d + ln -s /usr/share/alsa/alsa.conf.d/50-pipewire.conf "$INCLUDEDIR"/etc/alsa/conf.d + ln -s /usr/share/alsa/alsa.conf.d/99-pipewire-default.conf "$INCLUDEDIR"/etc/alsa/conf.d +} + build_variant() { variant="$1" shift @@ -43,7 +55,7 @@ build_variant() { GRUB_PKGS="grub-i386-efi grub-x86_64-efi" A11Y_PKGS="espeakup void-live-audio brltty" PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror $A11Y_PKGS $GRUB_PKGS" - XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf alsa-plugins-pulseaudio" + XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf" SERVICES="sshd" LIGHTDM_SESSION='' @@ -58,7 +70,7 @@ build_variant() { LIGHTDM_SESSION=enlightenment ;; xfce) - PKGS="$PKGS $XORG_PKGS lightdm lightdm-gtk3-greeter xfce4 gnome-themes-standard gnome-keyring network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2 firefox" + PKGS="$PKGS $XORG_PKGS lightdm lightdm-gtk3-greeter xfce4 gnome-themes-standard gnome-keyring network-manager-applet gvfs-afc gvfs-mtp gvfs-smb udisks2 firefox xfce4-pulseaudio-plugin" SERVICES="$SERVICES dbus elogind lightdm NetworkManager polkitd" LIGHTDM_SESSION=xfce ;; @@ -100,6 +112,10 @@ build_variant() { echo "$LIGHTDM_SESSION" > "$INCLUDEDIR"/etc/lightdm/.session fi + if [ "$variant" != base ]; then + setup_pipewire + fi + ./mklive.sh -a "$ARCH" -o "$IMG" -p "$PKGS" -S "$SERVICES" -I "$INCLUDEDIR" ${REPO} "$@" } From 22711eb3012e0fda654d3eb89db8f9fe7239281b Mon Sep 17 00:00:00 2001 From: classabbyamp Date: Sun, 25 Jun 2023 03:16:33 -0400 Subject: [PATCH 9/9] build-x86-images: add orca, graphical screenreader --- build-x86-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-x86-images.sh b/build-x86-images.sh index 94ef0b3284..5d9a93bd44 100755 --- a/build-x86-images.sh +++ b/build-x86-images.sh @@ -55,7 +55,7 @@ build_variant() { GRUB_PKGS="grub-i386-efi grub-x86_64-efi" A11Y_PKGS="espeakup void-live-audio brltty" PKGS="dialog cryptsetup lvm2 mdadm void-docs-browse xtools-minimal xmirror $A11Y_PKGS $GRUB_PKGS" - XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf" + XORG_PKGS="xorg-minimal xorg-input-drivers xorg-video-drivers setxkbmap xauth font-misc-misc terminus-font dejavu-fonts-ttf orca" SERVICES="sshd" LIGHTDM_SESSION=''