Changes between Version 2 and Version 3 of modelserialnumber
- Timestamp:
- 08/09/2018 11:45:44 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
modelserialnumber
v2 v3 5 5 Gateworks uses a 6digit serial number to identify products. There are several ways you can determine the serial number for a given product: 6 6 * 6 digit bar-code on product 7 * EEPROM info (For All Ventana, Laguna, Avila and Cambriaproducts)7 * EEPROM info (For All board products) 8 8 9 9 === physical bar-code === … … 47 47 The model number is not typically printed on the PCB. 48 48 49 For Ventana, Laguna, Avila and Cambria products, the model number can be seen at startup from the console of the board as one of the first few lines:49 The model number can be seen at startup from the console of the board as one of the first few lines: 50 50 * Ventana bootloader: 51 51 {{{ … … 99 99 Serial #: 298717 100 100 }}} 101 * Cambria bootloader:102 {{{103 +104 Trying NPE-C...success. Using NPE-C with PHY 1.105 Ethernet eth0: MAC address 00:d0:12:62:ed:82106 IP: 192.168.3.2/255.255.255.0, Gateway: 0.0.0.0107 Default server: 192.168.3.1108 109 RedBoot(tm) bootstrap and debug environment [ROM]110 Red Hat certified release, version 2.04.13 - built 16:56:27, Apr 24 2014111 112 Platform: Gateworks Cambria Platform (IXP43X) BE113 Model Number: GW2350-SP202-B114 Manufacture Date: 03-24-2011115 }}}116 101 117 102 From Linux you can obtain the model number directly from the i2c EEPROM: … … 129 114 {{{ 130 115 BOARD="$(dd if=/sys/devices/platform/cns3xxx-i2c.0/i2c-0/0-0050/eeprom bs=1 count=16 skip=304 2>/dev/null | hexdump -C | head -1 | cut -c62-67)" 131 echo $BOARD132 }}}133 * Avila / Cambria:134 {{{135 BOARD="$(dd if=/sys/devices/platform/i2c-gpio.0/i2c-0/0-0051/eeprom bs=1 count=16 skip=32 2>/dev/null | hexdump -C | head -1 | cut -c62-67)"136 116 echo $BOARD 137 117 }}}