CS1K 7.0/7.5/7.6/How to view BIOS version on CPPM without reboot/reset

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • smaiyaur
    Guru
    .
    • Nov 2013
    • 107

    CS1K 7.0/7.5/7.6/How to view BIOS version on CPPM without reboot/reset

    For linux base:
    [root@cs ~]# dmidecode --type 0

    # dmidecode 2.7
    SMBIOS 2.3 present.

    Handle 0x0000, DMI type 0, 20 bytes.
    BIOS Information
    Vendor: General Software, Inc./Nortel
    Version: NTDU74AA 18
    Release Date: 02/20/2008
    Address: 0xE0000
    Runtime Size: 128 kB
    ROM Size: 1024 kB
    Characteristics:
    ISA is supported
    PCI is supported
    PC Card (PCMCIA) is supported
    APM is supported
    BIOS is upgradeable
    BIOS shadowing is allowed
    Boot from CD is supported
    Selectable boot is supported
    BIOS ROM is socketed
    5.25"/360 KB floppy services are supported (int 13h)
    5.25"/1.2 MB floppy services are supported (int 13h)
    3.5"/720 KB floppy services are supported (int 13h)
    3.5"/2.88 MB floppy services are supported (int 13h)
    Print screen service is supported (int 5h)
    8042 keyboard services are supported (int 9h)
    Serial services are supported (int 14h)
    Printer services are supported (int 17h)
    CGA/mono video services are supported (int 10h)
    ACPI is supported
    AGP is supported

    For CPPM CS:

    Enter PDT (level 2)
    Print address 0xffff1528 as follows-

    1) This CPM has BIOS version 15...
    pdt d 0xffff1528 12 1
    ffff1520 4e 54 44 55 37 34 41 41 NTDU74AA
    ffff1530 20 31 35 00 15.............

    2) This CPM has BIOS version 18...
    pdt d 0xffff1528 12 1
    ffff1520 4e 54 44 55 37 34 41 41 NTDU74AA
    ffff1530 20 31 38 00 18.............
  • roberto
    Whiz
    .
    • Feb 2010
    • 44

    #2
    Originally posted by smaiyaur View Post
    For linux base:
    [root@cs ~]# dmidecode --type 0

    ...
    Version: NTDU74AA 18
    ..

    For CPPM CS:

    Enter PDT (level 2)
    Print address 0xffff1528 as follows-

    1) This CPM has BIOS version 15...
    pdt d 0xffff1528 12 1
    ffff1520 4e 54 44 55 37 34 41 41 NTDU74AA
    ffff1530 20 31 35 00 15.............

    2) This CPM has BIOS version 18...
    pdt d 0xffff1528 12 1
    ffff1520 4e 54 44 55 37 34 41 41 NTDU74AA
    ffff1530 20 31 38 00 18.............
    This is interesting.

    From the above it looks like the BIOS version is actually a hexadecimal number, both in the dmidecode output (not obvious) and when displayed through PDT (obvious).

    So the decimal equivalents of the CPM BIOS data are 21 (0x15) and 24 (0x18) respectively.

    I can see how this could raise a nugget of confusion if someone didn't know that the dmidecode BIOS version was in hexadecimal.

    Comment

    Loading