1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-19 15:05:12 +01:00

Changed target for ubpar.c to directly write to mtd device

SVN-Revision: 7502
This commit is contained in:
Hamish Guthrie 2007-06-05 04:34:38 +00:00
parent 6c6a51c4d5
commit c079b2e046

@ -115,7 +115,7 @@ int main(int argc, char *argv[]) {
envptr->crc = crc32(0, envptr->data, ENV_SIZE);
params = fopen("params", "w");
params = fopen("/dev/mtd1", "w");
fwrite(envptr, CFG_ENV_SIZE, 1, params);
fclose(params);