Changeset 3163
- Timestamp:
- 03/17/08 14:43:48 (9 months ago)
- Location:
- trunk/util/superiotool
- Files:
-
- 5 modified
-
Makefile (modified) (2 diffs)
-
README (modified) (1 diff)
-
ite.c (modified) (1 diff)
-
superiotool.c (modified) (1 diff)
-
superiotool.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/util/superiotool/Makefile
r2852 r3163 30 30 | sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/")"' 31 31 32 # TODO: -pedantic33 32 CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \ 34 -Werror-implicit-function-declaration -ansi $(SVNDEF)33 -Werror-implicit-function-declaration -ansi -pedantic $(SVNDEF) 35 34 36 35 OBJS = superiotool.o ali.o fintek.o ite.o nsc.o smsc.o winbond.o … … 44 43 45 44 install: $(PROGRAM) 46 $(INSTALL) $(PROGRAM) $(PREFIX)/ bin45 $(INSTALL) $(PROGRAM) $(PREFIX)/sbin 47 46 mkdir -p $(PREFIX)/share/man/man8 48 47 $(INSTALL) $(PROGRAM).8 $(PREFIX)/share/man/man8 -
trunk/util/superiotool/README
r3127 r3163 31 31 ----- 32 32 33 Please read the superiotool( 1) manpage or type 'superiotool --help'.33 Please read the superiotool(8) manpage or type 'superiotool --help'. 34 34 35 35 Per default (no options) superiotool will just probe for a Super I/O -
trunk/util/superiotool/ite.c
r3121 r3163 429 429 { 430 430 print_vendor_chips("ITE", reg_table); 431 print_vendor_chips("ITE EC", ec_table); 431 432 } -
trunk/util/superiotool/superiotool.c
r3121 r3163 238 238 case 'h': 239 239 printf(USAGE); 240 printf(USAGE_INFO); 240 241 exit(0); 241 242 break; -
trunk/util/superiotool/superiotool.h
r3121 r3163 37 37 -V | --verbose Verbose mode\n\ 38 38 -v | --version Show the superiotool version\n\ 39 -h | --help Show a short help text\n\n\ 39 -h | --help Show a short help text\n\n" 40 41 #define USAGE_INFO "\ 40 42 Per default (no options) superiotool will just probe for a Super I/O\n\ 41 43 and print its vendor, name, ID, revision, and config port.\n" … … 124 126 }; 125 127 126 127 128 /** Table of functions to print out supported Super I/O chips. */ 128 129 static const struct {
