Changes between Version 2 and Version 3 of modelserialnumber


Ignore:
Timestamp:
08/09/2018 11:45:44 PM (6 years ago)
Author:
Tim Harvey
Comment:

remove avila/cambria/rincon data

Legend:

Unmodified
Added
Removed
Modified
  • modelserialnumber

    v2 v3  
    55Gateworks uses a 6digit serial number to identify products. There are several ways you can determine the serial number for a given product:
    66 * 6 digit bar-code on product
    7  * EEPROM info (For All Ventana, Laguna, Avila and Cambria products)
     7 * EEPROM info (For All board products)
    88
    99=== physical bar-code ===
     
    4747The model number is not typically printed on the PCB.
    4848
    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:
     49The model number can be seen at startup from the console of the board as one of the first few lines:
    5050 * Ventana bootloader:
    5151{{{
     
    9999Serial #: 298717
    100100}}}
    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:82
    106 IP: 192.168.3.2/255.255.255.0, Gateway: 0.0.0.0
    107 Default server: 192.168.3.1
    108 
    109 RedBoot(tm) bootstrap and debug environment [ROM]
    110 Red Hat certified release, version 2.04.13 - built 16:56:27, Apr 24 2014
    111 
    112 Platform: Gateworks Cambria Platform (IXP43X) BE
    113 Model Number: GW2350-SP202-B
    114 Manufacture Date: 03-24-2011
    115 }}}
    116101
    117102From Linux you can obtain the model number directly from the i2c EEPROM:
     
    129114{{{
    130115  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 $BOARD
    132 }}}
    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)"
    136116  echo $BOARD
    137117}}}