/shared2/sys/SYSCONF
This is an old revision of this page, as edited by BhaaL (talk | contribs) at 20:08, 29 July 2017. It may differ significantly from the current revision. |
The SYSCONF contains many Wii system settings.
Its size is always 0x4000, and its values are always encoded in Big Endian. Size/Length indicators are usually "length minus one" (ie. a length of 0x06 means that 7 bytes of data follow.)
Conventions for adding or removing settings to the file are currently unknown, but shouldn't be too hard to determine--although that's not necessarily a useful function.
File structure
File offset | Size | Description |
---|---|---|
0x0000
|
4 bytes | Header magic (SCv0 )
|
0x0004
|
2 bytes | Number of items in this file |
0x0006
|
2 bytes each | Item offsets, one for every item ("Number of items" times) |
varies | 2 bytes | Offset past the end of the last valid entry, follows immediately after "Item offsets" |
varies | varies | Items, each one at an offset specified by "Item offsets" Unused offsets are zeroed completely |
0x3FB0 ?
|
2 bytes each | Lookup table for specific item names, 38 entries long. When the value is non-zero, it contains the offset where the item offset is stored (name LUT → item offset → actual item) The offset is a guess, as well as the length (based on names dumped from the system menu). Assuming there are no other item names in this LUT and there is one entry for every known setting, it should be located (76 + 4) bytes from the end of file |
0x3FFC
|
4 bytes | EOF magic (SCed )
|
Item structure
Offset | Size | Description |
---|---|---|
0x00
|
1 byte | Item header, consists of two components: Item type: 3 high-order bits indicate the item type Item name length: 5 low-order bits indicate the name of this items length (minus one) |
0x01
|
varies | Item name, length specified by the item name length in the header. |
varies | varies | Item data, length depends on the Item type. |
Types
Name | Value | Size | Note |
---|---|---|---|
BIGARRAY | 1 | varies | 2 bytes of length (minus one), followed by $n bytes of data
|
SMALLARRAY | 2 | varies | 1 byte of length (minus one), followed by $n bytes of data
|
BYTE | 3 | 1 byte | |
SHORT | 4 | 2 bytes | |
LONG | 5 | 4 bytes | |
LONGLONG | 6 | 8 bytes | |
BOOL | 7 | 1 byte | 0 is false , anything else is true (most commonly 1)
|
Note that both BIGARRAY and SMALLARRAY store the length (minus one) in the beginning and their actual size must be calculated from there. The name "ARRAY" need not indicate the actual content type; most settings store an application defined structure in them.
Known settings
BT Settings
Name | Type | Size | Values | Description |
---|---|---|---|---|
BT.DINF | BIGARRAY | 0x460 | Bluetooth IDs | List of Wiimotes "synced" to the system |
BT.CDIF | BIGARRAY | ? | ? | {{{5}}} |
BT.SENS | LONG | 4 | 0-4? | Wiimote sensitivity setting |
BT.BAR | BYTE | 1 | 0,1 | Sensor bar position (0:bottom) |
BT.SPKV | BYTE | 1 | varies | Wiimote speaker volume |
BT.MOT | BYTE | 1 | 0,1 | Wiimote motor on/off |
IPL Settings
Name | Type | Size | Values | Description |
---|---|---|---|---|
IPL.IDL | SMALLARRAY | 2 | 0,1;0,1 | Shutdown mode and idle LED mode |
IPL.UPT | BYTE | 1 | 2,? | Update Type |
IPL.NIK | SMALLARRAY | 0x16 | utf16be string, including trailing NUL | Console Nickname |
IPL.AR | BYTE | 1 | 0,1 | Aspect ratio setting. 0: 4:3 1: 16:9 |
IPL.SSV | BYTE | 1 | 0,1 | Screen Saver off/on (burn-in reduction) |
IPL.LNG | BYTE | 1 | 0,1 | System Language, see conf.c for some values |
IPL.SADR | BIGARRAY | 0x1007 | lots | "Simple Address" Contains some region info |
IPL.CB | LONG | 4 | ?? | Counter Bias -- difference between RTC and local time, in seconds |
IPL.PC | SMALLARRAY | 0x50 | string | Parental Control password/setting |
IPL.CD | BOOL | 1 | bool | Config Done flag -- has initial setup been performed? |
IPL.CD2 | BOOL | 1 | bool | Config2 Done flag -- has network setup been performed? |
IPL.EULA | BOOL | 1 | bool | EULA Done flag -- has EULA been acknowledged? |
IPL.PGS | BYTE | 1 | 0,1 | Use Progressive Scan |
IPL.E60 | BYTE | 1 | 0,1 | Use EuRGB60 (PAL6) |
IPL.SND | BYTE | 1 | 0-2 | Sound setting |
IPL.DH | BYTE | 1 | ? | Display Offset (Horiz) |
IPL.INC | LONG | 4 | ? | "Installed Channel App Count" |
IPL.ARN | ? | ? | ? | ? |
IPL.FRC | LONG | 4 | ? | "Free Channel App Count" |
IPL.SADR values: Offset 0 is a Country Code and offset 1 seems to be a more localized region code.
Misc Settings
Name | Type | Size | Values | Description |
---|---|---|---|---|
DEV.BTM | BYTE | 1 | 0 Production, 1 Development | Bootmode (used for NDEV) |
DEV.VIM | BYTE | 1 | ? | ? |
DEV.CTC | BYTE | 1 | 0 | ? |
DEV.DSM | BYTE | 1 | 0 Disabled, 1 Enabled, 2 Debug | Drive saving (used for NDEV) |
DVD.CNF | ? | ? | ? | ? |
WWW.RST | BYTE | 1 | ? | WWW Restriction |
NET.CNF | ? | ? | ? | ? |
NET.CFG | ? | ? | ? | ? |
NET.CTPC | LONG | 4 | ? | Net Content Restrictions ("Content Parental Control"?) |
NET.WCFG | LONG | 4 | ? | WC24 Configuration flags |
MPLS.MOVIE | BYTE | 1 | 0 Watched, 1 Not Watched | Wii Motion Plus Tutorial Movie |