From 776252e75ab84cd05243d4fa9a3be3c6ea79701b Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Sat, 21 Jul 2012 08:18:15 -0500 Subject: [PATCH] Games: Allow joysticks and game pads to work --- fedora-livedvd-games.ks | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/fedora-livedvd-games.ks b/fedora-livedvd-games.ks index 7e91988..4a7b847 100644 --- a/fedora-livedvd-games.ks +++ b/fedora-livedvd-games.ks @@ -16,6 +16,9 @@ part / --size 10240 -wine +# Support for joysticks and game pads is now in kernel-modules-extra +kernel-modules-extra + # games # traditional (big) @@ -194,3 +197,14 @@ games-menus -autodownloader %end + +%post +# Load drivers needed for joysticks and game pads so they work out on +# the live image without futzing where possible. +cat > /etc/modules-load.d/joystick.conf << EOF +joydev +analog +EOF +chmod 755 /etc/modules-load.d/joystick.conf + +%end