From: hcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Tue, 5 Jun 2007 04:34:38 +0000 (+0000)
Subject: Changed target for ubpar.c to directly write to mtd device
X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/800ef4cbea033edc09571616b574d957e2ba73fe

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


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7502 3c298f89-4303-0410-b956-a3cf2f4a3e73
---

diff --git a/target/linux/at91-2.6/image/u-boot/ubclient/ubpar.c b/target/linux/at91-2.6/image/u-boot/ubclient/ubpar.c
index 103d4fd21..228a578a6 100644
--- a/target/linux/at91-2.6/image/u-boot/ubclient/ubpar.c
+++ b/target/linux/at91-2.6/image/u-boot/ubclient/ubpar.c
@@ -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);