2 * Command line interface for libnvram
4 * Copyright 2009, Jo-Philipp Wich <xm@subsignal.org>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 * The libnvram code is based on Broadcom code for Linux 2.4.x .
28 static nvram_handle_t
* nvram_open_rdonly(void)
30 const char *file
= nvram_find_staging();
33 file
= nvram_find_mtd();
36 return nvram_open(file
, NVRAM_RO
);
41 static nvram_handle_t
* nvram_open_staging(void)
43 if( nvram_find_staging() != NULL
|| nvram_to_staging() == 0 )
44 return nvram_open(NVRAM_STAGING
, NVRAM_RW
);
49 static int do_show(nvram_handle_t
*nvram
)
54 if( (t
= nvram_getall(nvram
)) != NULL
)
58 printf("%s=%s\n", t
->name
, t
->value
);
68 static int do_get(nvram_handle_t
*nvram
, const char *var
)
73 if( (val
= nvram_get(nvram
, var
)) != NULL
)
82 static int do_unset(nvram_handle_t
*nvram
, const char *var
)
84 return nvram_unset(nvram
, var
);
87 static int do_set(nvram_handle_t
*nvram
, const char *pair
)
89 char *val
= strstr(pair
, "=");
90 char var
[strlen(pair
)];
95 memset(var
, 0, sizeof(var
));
96 strncpy(var
, pair
, (int)(val
-pair
));
97 stat
= nvram_set(nvram
, var
, (char *)(val
+ 1));
103 static int do_info(nvram_handle_t
*nvram
)
105 nvram_header_t
*hdr
= nvram_header(nvram
);
107 /* CRC8 over the last 11 bytes of the header and data bytes */
108 uint8_t crc
= hndcrc8((unsigned char *) &hdr
[0] + NVRAM_CRC_START_POSITION
,
109 hdr
->len
- NVRAM_CRC_START_POSITION
, 0xff);
112 printf("Magic: 0x%08X\n", hdr
->magic
);
113 printf("Length: 0x%08X\n", hdr
->len
);
115 printf("CRC8: 0x%02X (calculated: 0x%02X)\n",
116 hdr
->crc_ver_init
& 0xFF, crc
);
118 printf("Version: 0x%02X\n", (hdr
->crc_ver_init
>> 8) & 0xFF);
119 printf("SDRAM init: 0x%04X\n", (hdr
->crc_ver_init
>> 16) & 0xFFFF);
120 printf("SDRAM config: 0x%04X\n", hdr
->config_refresh
& 0xFFFF);
121 printf("SDRAM refresh: 0x%04X\n", (hdr
->config_refresh
>> 16) & 0xFFFF);
122 printf("NCDL values: 0x%08X\n\n", hdr
->config_ncdl
);
124 printf("%i bytes used / %i bytes available (%.2f%%)\n",
125 hdr
->len
, NVRAM_SPACE
- hdr
->len
,
126 (100.00 / (double)NVRAM_SPACE
) * (double)hdr
->len
);
132 int main( int argc
, const char *argv
[] )
134 nvram_handle_t
*nvram
;
141 /* Ugly... iterate over arguments to see whether we can expect a write */
142 for( i
= 1; i
< argc
; i
++ )
143 if( ( !strcmp(argv
[i
], "set") && ++i
< argc
) ||
144 ( !strcmp(argv
[i
], "unset") && ++i
< argc
) ||
145 !strcmp(argv
[i
], "commit") )
152 nvram
= write
? nvram_open_staging() : nvram_open_rdonly();
154 if( nvram
!= NULL
&& argc
> 1 )
156 for( i
= 1; i
< argc
; i
++ )
158 if( !strcmp(argv
[i
], "show") )
160 stat
= do_show(nvram
);
163 else if( !strcmp(argv
[i
], "info") )
165 stat
= do_info(nvram
);
168 else if( !strcmp(argv
[i
], "get") && ++i
< argc
)
170 stat
= do_get(nvram
, argv
[i
]);
173 else if( !strcmp(argv
[i
], "unset") && ++i
< argc
)
175 stat
= do_unset(nvram
, argv
[i
]);
178 else if( !strcmp(argv
[i
], "set") && ++i
< argc
)
180 stat
= do_set(nvram
, argv
[i
]);
183 else if( !strcmp(argv
[i
], "commit") )
190 fprintf(stderr
, "Unknown option '%s' !\n", argv
[i
]);
197 stat
= nvram_commit(nvram
);
202 stat
= staging_to_nvram();
208 "Could not open nvram! Possible reasons are:\n"
209 " - No device found (/proc not mounted or no nvram present)\n"
210 " - Insufficient permissions to open mtd device\n"
211 " - Insufficient memory to complete operation\n"
212 " - Memory mapping failed or not supported\n"
223 " nvram get variable\n"
224 " nvram set variable=value [set ...]\n"
225 " nvram unset variable [unset ...]\n"
This page took 0.052956 seconds and 5 git commands to generate.