3
爲了在嵌入式設備上啓動Linux內核,我必須用特殊的標頭標記內核。用於標記內核的程序僅由32位二進制製造商提供。這非常煩人,因爲我必須在我的64位系統上安裝數百兆字節的庫,才能標記少量字節的內核。這是內核是如何標記:用C程序編寫頭文件?
$./mkimage -f kernel.cfg -d zImage_without_header zImage
kernel.cfg:
##########################################################
#ENCINFO.CFG
#
# information and command for encode the Linux zImage
##########################################################
# Magic number for the ImageHeader, use this to seach start of the Image Header
#
MAGIC_NUMBER 0x27051956
#operation system type
OS_TYPE linux
#cpu architecture type
CPU_ARCH arm
#image type
IMAGE_TYPE kernel
#compress type
COMPRESS_TYPE gzip
#
DATALOAD_ADDRESS 0x00008000
#
ENTRY_ADDRESS 0x00008000
#image name string
IMAGE_NAME kernel.img
#model name string
MODEL_NAME DNS-313
# version string
VERSION 1.00b18
# mac address string
MAC_ADDRESS FF-FF-FF-FF-FF-FF
#the beginning offset of writing header
START_OFFSET 0x00
#the end offset of writing header
END_OFFSET 0xFF
#whether overwrite
OVERWRITE n
的mkimage生成的二進制是從可從例如mkimage生成不同Debian存儲庫,那個不會爲我的設備工作。我試圖創建一個1MB文件和標籤它顯示標題:從最後的命令
$dd if=/dev/zero bs=1k count=1024 of=zImage_without_header
$./mkimage -f kernel.cfg -d zImage_without_header zImage
輸出:
Magic Number: 27051956
Image Name: kernel.img
Created: Wed May 2 17:40:43 2012
Image Type: ARM Linux Kernel Image (gzip compressed)
Data Size: 1048576 Bytes = 1024.00 kB = 1.00 MB
Load Address: 0x00008000
Entry Point: 0x00008000
Model Name: DNS-313
Version : 1.00b18
Mac Address: ff:ff:ff:ff:ff:ff
從最後一個命令輸出
$hexdump -C zImage
:
00000000 27 05 19 56 [2c 83 53 d5] 4f a1 [55 7b 00 10 00 00] |'..V,.S.O.U{....|
00000010 00 00 80 00 00 00 80 00 [a7 38 ea 1c] 05 02 02 01 |.........8......|
00000020 6b 65 72 6e 65 6c 2e 69 6d 67 00 00 00 00 00 00 |kernel.img......|
00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
00000040 44 4e 53 2d 33 31 33 00 00 00 00 00 00 00 00 00 |DNS-313.........|
00000050 31 2e 30 30 62 31 38 00 00 00 00 00 00 00 00 00 |1.00b18.........|
00000060 ff ff ff ff ff ff 00 00 00 00 00 00 00 00 00 00 |................|
00000070 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................|
*
00100060
內核應該始終標記爲像上面的標題,因爲我不需要改變任何東西。括號內的數值似乎會在文件大小變化時發生變化,但我不知道如何。
我認爲可以用一個小型C程序完成同樣的事情,但是我不確定從哪裏開始以及如何實現?
歡迎任何建議或想法。
請求來自制造商的mkimage的來源。雖然我認爲他們可以在技術上拒絕,但這將是一個非常糟糕的主意。 – Joshua
似乎很可能某些或所有變化的值是校驗和。在你自己創建頭之前,你需要知道它們是什麼。 –
'4f a1 55 7b'是一個時間戳(5月2日@ 15:40:43 GMT)。其中兩個「未知數」是校驗和。如果你的引導程序是u-boot,應該是這些字段:http://www.linux-m32r.org/public/codefestweek2008/takata/qemu-0.9.1/html/d1/d14/structuboot__image__header__t.html – indiv