diff options
author | Michael Biebl <mbiebl@gmail.com> | 2009-11-30 09:51:41 +0100 |
---|---|---|
committer | Michael Biebl <mbiebl@gmail.com> | 2009-11-30 09:51:41 +0100 |
commit | 738bfc88110d0f0a7a64b754875358a1a870bded (patch) | |
tree | 32a5b776edb98985ffdbdf02168adc6f8cc398ce | |
parent | 898b46860ad7aa509098e3e454e30c2f3d7b4dea (diff) |
Fix a typo in have_kms
The nvidia driver is called "nouveau", not "noveau".
Thanks to Julien Cristau for spotting this.
-rwxr-xr-x | pm/sleep.d/98smart-kernel-video | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pm/sleep.d/98smart-kernel-video b/pm/sleep.d/98smart-kernel-video index 11b5490..4259397 100755 --- a/pm/sleep.d/98smart-kernel-video +++ b/pm/sleep.d/98smart-kernel-video @@ -32,7 +32,7 @@ have_kms() { # if we are running with a KMS-enabled video driver, we should not # attempt to run any quirks - grep -q -E '(noveau|drm)fb' /proc/fb || return 1 + grep -q -E '(nouveau|drm)fb' /proc/fb || return 1 remove_all_video_quirks add_parameters --quirk-no-chvt } |