commit | 5f28455c6efe9c86d96d216a5bdc7f6db3e85780 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Fri Nov 14 03:11:29 2003 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Fri Nov 14 03:11:29 2003 +0000 |
tree | 0f75de41886affd1c3fbff8db2a53b6f5a5a8faf | |
parent | b6e58d2b9a02dfcf313e064408aea1359a4d9763 [diff] [blame] |
Oskar Liljeblad writes: Here's a fix for the hard-coded device name in fbset.
diff --git a/util-linux/fbset.c b/util-linux/fbset.c index f66ebe5..b5f57b1 100644 --- a/util-linux/fbset.c +++ b/util-linux/fbset.c
@@ -35,7 +35,7 @@ #include <sys/ioctl.h> #include "busybox.h" -#define DEFAULTFBDEV "/dev/fb0" +#define DEFAULTFBDEV FB_0 #define DEFAULTFBMODE "/etc/fb.modes" static const int OPT_CHANGE = (1 << 0);