Changeset 3412 for trunk/util/flashrom/layout.c
- Timestamp:
- 07/03/08 21:26:44 (5 months ago)
- Files:
-
- 1 modified
-
trunk/util/flashrom/layout.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/util/flashrom/layout.c
r3408 r3412 51 51 52 52 if ((*walk) == 0 || ((*walk) & 0x3ff) != 0) { 53 /* We might have an Nvidia chipset bios 54 * which stores the id information at a 55 * different location. 53 /* We might have an NVIDIA chipset BIOS which stores the ID 54 * information at a different location. 56 55 */ 57 56 walk = (unsigned int *)(bios + size - 0x80); … … 89 88 /* 90 89 * If lb_vendor is not set, the coreboot table was 91 * not found. Nor was -m VENDOR:PART specified90 * not found. Nor was -m VENDOR:PART specified. 92 91 */ 93 94 92 if (!lb_vendor || !lb_part) { 95 93 printf("Note: If the following flash access fails, " 96 " you might need to specify -m <vendor>:<mainboard>.\n");94 "try -m <vendor>:<mainboard>.\n"); 97 95 return 0; 98 96 } … … 101 99 * a little less user^Werror prone. 102 100 */ 103 104 101 if (!strcasecmp(mainboard_vendor, lb_vendor) && 105 102 !strcasecmp(mainboard_part, lb_part)) {
