diff options
author | Matt Kraai <kraai@debian.org> | 2000-10-28 16:56:32 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-10-28 16:56:32 +0000 |
commit | 269e07cadc513bcfdd9804c8abb4c177e589a9d8 (patch) | |
tree | c6f80f311496c7d27fd46ad4cdaca5042e3d484c /fbset.c | |
parent | a5bd26831f7f97b1641619b4c2fe519ac2a02155 (diff) |
Make fbset compile with the readmode feature by pulling defs from fb.h.
Diffstat (limited to 'fbset.c')
-rw-r--r-- | fbset.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -180,6 +180,15 @@ struct cmdoptions_t { 0, 0, 0} }; +#ifdef BB_FEATURE_FBSET_READMODE +/* taken from linux/fb.h */ +#define FB_VMODE_INTERLACED 1 /* interlaced */ +#define FB_VMODE_DOUBLE 2 /* double scan */ +#define FB_SYNC_HOR_HIGH_ACT 1 /* horizontal sync high active */ +#define FB_SYNC_VERT_HIGH_ACT 2 /* vertical sync high active */ +#define FB_SYNC_EXT 4 /* external sync */ +#define FB_SYNC_COMP_HIGH_ACT 8 /* composite sync high active */ +#endif static int readmode(struct fb_var_screeninfo *base, const char *fn, const char *mode) { |