Skip to content

Commit 3b113c5

Browse files
committed
dracut/vmklive: rename live.screenreader to live.accessibility
1 parent cbe785b commit 3b113c5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ that can change the behavior of the live system:
4949
- `live.autologin` will skip the initial login screen on `tty1`.
5050
- `live.user` will change the username of the non-root user from the default `anon`. The password remains `voidlinux`.
5151
- `live.shell` sets the default shell for the non-root user in the live environment.
52-
- `live.screenreader` enables the console screenreader `espeakup` in the live environment.
52+
- `live.accessibility` enables accessibility features like the console screenreader `espeakup` in the live environment.
5353
- `console` can be set to `ttyS0`, `hvc0`, or `hvsi0` to enable `agetty` on that serial console.
5454
- `locale.LANG` will set the `LANG` environment variable. Defaults to `en_US.UTF-8`.
5555
- `vconsole.keymap` will set the console keymap. Defaults to `us`.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
type getargbool >/dev/null 2>&1 || . /lib/dracut-lib.sh
66

7-
if getargbool 0 live.screenreader && [ -d "${NEWROOT}/etc/sv/espeakup" ]; then
7+
if getargbool 0 live.accessibility && [ -d "${NEWROOT}/etc/sv/espeakup" ]; then
88
ln -s /etc/sv/espeakup "${NEWROOT}/etc/runit/runsvdir/current/"
99
fi

dracut/vmklive/module-setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ install() {
2727
inst_hook pre-pivot 02 "$moddir/display-manager-autologin.sh"
2828
inst_hook pre-pivot 02 "$moddir/getty-serial.sh"
2929
inst_hook pre-pivot 03 "$moddir/locale.sh"
30-
inst_hook pre-pivot 04 "$moddir/screenreader.sh"
30+
inst_hook pre-pivot 04 "$moddir/accessibility.sh"
3131
}

0 commit comments

Comments
 (0)