summaryrefslogtreecommitdiffstats
path: root/cmdline.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-26 17:08:09 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-26 17:08:09 +0000
commit4d71fe0d53c8de935fb38d4d479a984e6eea844a (patch)
tree8ff724df3baa66ef1abe3c2c3ba66cd9f4e7f1c4 /cmdline.py
parentba53dcab090f5b3b6940cc97f4848eb97449dcb7 (diff)
downloadanaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.tar.gz
anaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.tar.xz
anaconda-4d71fe0d53c8de935fb38d4d479a984e6eea844a.zip
2005-04-26 Jeremy Katz <katzj@redhat.com>
* text.py (InstallInterface.beep): Add no-op beep method. Could actually do something if newtBell() were bound in snack. * cmdline.py (InstallInterface.beep): Add (no-op) beep method. * gui.py (InstallInterface.beep): Add beep method. * scripts/mk-images.x86_64 (COMMONMODULES): Add pcspkr module. * scripts/mk-images.i386 (COMMONMODULES): Likewise. * loader2/loader.c (main): Load pcspkr module.
Diffstat (limited to 'cmdline.py')
-rw-r--r--cmdline.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmdline.py b/cmdline.py
index 7ab73c8f8..9173b9d4f 100644
--- a/cmdline.py
+++ b/cmdline.py
@@ -94,6 +94,9 @@ class InstallInterface:
def waitWindow(self, title, text):
return WaitWindow(title, text)
+ def beep(self):
+ pass
+
def run(self, id, dispatch):
id.fsset.registerMessageWindow(self.messageWindow)
id.fsset.registerProgressWindow(self.progressWindow)