Changes between Version 49 and Version 50 of newport
- Timestamp:
- 04/06/2018 10:10:31 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
newport
v49 v50 188 188 189 189 Updating the [wiki:newport/boot 'Boot firmware'] (everything up to and including the Bootloader): 190 * on a Newport booted to the bootloader:191 {{{#!bash 192 setenvdev 0 # use 'mmc list' to show which device to use for eMMC vs microSD193 tftpboot ${loadaddr} myimage.img && mmc write ${loadaddr} 0 8000 # update first 16MB190 On a Newport booted to the bootloader: 191 {{{#!bash 192 mmc dev 0 # use 'mmc list' to show which device to use for eMMC vs microSD 193 tftpboot ${loadaddr} firmware-newport.img && mmc write ${loadaddr} 0 8000 # update first 16MB 194 194 mmc rescan # re-scan the mmc devices in case the partition table changed 195 195 }}} … … 208 208 {{{#!bash 209 209 cd /tmp 210 wget http://dev.gateworks.com/newport/ myimage.img211 dd if= myimage.img of=/dev/mmcblk0210 wget http://dev.gateworks.com/newport/boot_firmware/firmware-newport.img 211 dd if=firmware-newport.img of=/dev/mmcblk0 212 212 }}} 213 213 * Note above we are writing to {{{/dev/mmcblk0}}} and not a partition