windowsCE映象檔案結構

2021-09-08 15:17:08 字數 747 閱讀 5441

formats:

struct binfile

dword   imagestart

dword   imagelength

record  imagerecords[recordnum]

}; struct record;

在檔案的最開端,會放置乙個binfile結構,imagestart和imagelength分別對應映象展開後在記憶體中存放的首位址和長度。該結構中的recordnum為不確定的,通常在最後乙個記錄之後增加乙個address和chksum都為0的紀錄表示結束,而這個表示結束的結構中的length則標示其實際入口點。

image

offset   -----------

0x00    | imagestart   

| |

0x40    | rom signature

0x44    | pointer to the romhdr for this region

| |

0x???? | romhdr;

| chain file

struct _xipchain_entry ;

offset   --------------------------

0x00    | dword count;

0x04    | xipchain_entry[1];

| xipchain_entry[2];

| ...

windowsCE映象檔案結構

formats struct binfile dword imagestart dword imagelength record imagerecords recordnum struct record 在檔案的最開端,會放置乙個binfile結構,imagestart和imagelength分別對...

qnx 映象檔案 QNX OS映象

1.介紹 可引導映象指包含了startup和procnto的映象,ipl,boot rom或bios x86 可以將控制權傳遞給它。一般的可引導映象如下所示 對於有些系統,可能需要與配置相關的設定,通常將提供不可引導的映象。將這個映象看作是第二個 檔案系統 包含一些額外的檔案。由於是不可引導的,所以...

製作QT映象檔案

1 dd if dev zero of qt lib.img bs 1m count 80 建立80m的映象檔案,如果提示no space,可更改80,建立更大的映象 2 mkfs.ext2 f qt lib.img 格式化該映象 3 sudo chmod go w qt lib.img 設定許可權...