Merge branch 'update_readme'
authorPiotr Dymacz <pepe2k@gmail.com>
Thu, 5 Nov 2015 12:52:17 +0000 (13:52 +0100)
committerPiotr Dymacz <pepe2k@gmail.com>
Thu, 5 Nov 2015 12:52:17 +0000 (13:52 +0100)
1  2 
README.md
READMEPL.md

diff --cc README.md
index b5def0ba7f849b087e4c8f8c9c03d422815a95ac,748b811258513a955599c6d4a9767405b97b6d68..bc4875b875513f54d02a153bfd62cc399a2cfa93
+++ b/README.md
@@@ -144,11 -149,93 +153,98 @@@ Second, very useful modification is a n
  
  ![](http://www.tech-blog.pl/wordpress/wp-content/uploads/2013/04/u-boot_mod_for_tp-link_with_ar9331_netconsole.jpg)
  
 +You could also use netcat instead of Hercules utility on Mac/Linux:
 +```
 +# nc -u -p 6666 192.168.1.1 6666
 +```
 +
+ ### Writable environment variables
+ U-Boot uses special "**environment variables**" which are used for storing values of many different settings, like IP addresses of device and remote server for TFTP transaction, serial console baud rate, boot command, etc. Environment is usually stored in separate FLASH sector or its part, so all changes can be saved permanently.
+ None of the popular manufacturers provides this feature and use so called "**read-only environment**" (embedded in U-Boot image), which means that all changes made during a runtime will be lost after device restart and there is no way to store them in FLASH.
+ This modification uses writable environment variables in almost all supported devices, so you can do for example:
+ ```
+ uboot> setenv ipaddr 192.168.1.100
+ uboot> saveenv
+ Saving environment to FLASH...
+ Erase FLASH from 0x9F010000 to 0x9F01FFFF in bank #1
+ Erasing: #
+ Erased sectors: 1
+ Writting at address: 0x9F010000
+ uboot> reset
+ ```
+ Which will change device IP address and save updated environment variables in FLASH. From next power up, the device will use new value for its IP address.
+ Using command **run** and writable environment variables you are able to write custom, small scripts like below example, used for firmware upgrade using TFTP method:
+ ```
+ uboot> printenv
+ [...]
+ firmware_addr=0x9F020000
+ firmware_name=firmware.bin
+ firmware_upg=if ping $serverip; then tftp $loadaddr $firmware_name && erase $firmware_addr +$filesize && cp.b $loadaddr $firmware_addr $filesize && echo OK!; else echo ERROR! Server not reachable!; fi
+ [...]
+ uboot> run firmware_upg
+ Ethernet mode (duplex/speed): 1/100 Mbps
+ Using eth0 device
+ Ping OK, host 192.168.1.2 is alive!
+ TFTP from IP: 192.168.1.2
+       Our IP: 192.168.1.1
+     Filename: 'firmware.bin'
+ Load address: 0x80800000
+        Using: eth0
+      Loading: ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               ########################################
+               #########
+ TFTP transfer complete!
+ Bytes transferred: 3932160 (0x3c0000)
+ Erase FLASH from 0x9F020000 to 0x9F3DFFFF in bank #1
+ Erasing: #######################################
+          #####################
+ Erased sectors: 60
+ Copying to FLASH...
+ Writting at address: 0x9F020000
+ Done!
+ OK!
+ uboot>
+ ```
  ### Other
  
  Moreover:
diff --cc READMEPL.md
Simple merge