| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Sercomm uses uppercase for hexadecimal representation of the device
hardware IDs in factory image PID. This commit brings the sercomm-pid.py
script into compliance with the original Sercomm algorithm.
Example
-------
+--------+-------------+-----------+-------------+
| Device | PID (before | PID | PID (after |
| HWID | the commit) | (Sercomm) | the commit) |
+--------+-------------+-----------+-------------+
| CPJ | 43 50 4a | 43 50 4A | 43 50 4A |
+--------+-------------+-----------+-------------+
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
|
|
|
|
|
|
|
| |
Apparently, Sercomm sets 2 padding bytes instead of 1 (ramips).
The HW version is a bit different than the one used for ramips.
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
|
|
This scripts creates Sercomm PID file. PID is necessary for the factory
images creation of variuos Sercomm-based devices (Beeline, Netgear,
Etisalat).
Size: 0x70
+-------+------+---------------+------------------+
| Start | Size | Value* (ASCII)| Description |
+=======+======+===============+==================+
| 0x0 | 0x8 | 10100 | Hardware version |
+-------+------+---------------+------------------+
| 0x8 | 0x8 | 444245 (DBE) | Hardware ID |
+-------+------+---------------+------------------+
| 0x64 | 0x4 | 1002 | Software version |
+-------+------+---------------+------------------+
*for Beeline Smartbox GIGA
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
|