[packages] new package uboot-env-mmc: hacked in support for reading/writing an uboot environment from/to none-flash devices
Signed-off-by: Michael Heimpold <mhei@heimpold.de> git-svn-id: svn://svn.openwrt.org/openwrt/packages@35271 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
17
utils/uboot-envtools-mmc/patches/005-no-restrictions.patch
Normal file
17
utils/uboot-envtools-mmc/patches/005-no-restrictions.patch
Normal file
@ -0,0 +1,17 @@
|
||||
--- a/fw_env.c
|
||||
+++ b/fw_env.c
|
||||
@@ -375,12 +375,14 @@ int fw_setenv (int argc, char *argv[])
|
||||
/*
|
||||
* Ethernet Address and serial# can be set only once
|
||||
*/
|
||||
+#if 0
|
||||
if ((strcmp (name, "ethaddr") == 0) ||
|
||||
(strcmp (name, "serial#") == 0)) {
|
||||
fprintf (stderr, "Can't overwrite \"%s\"\n", name);
|
||||
errno = EROFS;
|
||||
return -1;
|
||||
}
|
||||
+#endif
|
||||
|
||||
if (*++nxt == '\0') {
|
||||
*env = '\0';
|
Reference in New Issue
Block a user