嵌入式Linux啟動過程中的問題積累
博文原位址:http://blog.csdn.net/dzassn/article/details/1953993
1.Bad Magic Number
## Booting image at 33000000 ...
Bad Magic Number
OMAP5912 OSK # (tftp下載下傳好kernel的uImage後就停止在這,不能啟動kernel)
OMAP5912 OSK # (tftp下載下傳好kernel的uImage後就停止在這,不能啟動kernel)
問題原因:啟動參數設定錯誤,0x30000000處不可以執行。
有的開發闆sdram不是在0x33000000,是以不能把kernel uImage下載下傳到0x33000000中運作。如我之前的bootcmd參數為:setenv bootcmd tftpboot 33000000 uImage/; bootm 33000000。但闆子Omap5912的sdram位址在0x100000000,将參數改為setenv bootcmd tftpboot 10000000 uImage/; bootm 10000000後便可以啟動kernel了。
2.啟動停止在"Starting kernel ..."
TFTP from server 192.168.167.170; our IP address is 192.168.167.15
Filename 'uImage'
Load address: 0x10000000
Loading: #################################################################
#################################################################
done
Bytes transferred = 2025908 (1ee9b4 hex)
Booting image at 10000000 ...
Image Name: Linux-2.6.18-mh8_pro500-versatil
Image Type: ARM Linux Kernel Image (uncompressed)
Data Size: 2025844 Bytes = 1.9 MB
Load Address: 30008000
Entry Point: 30008000
Verifying Checksum ... OK
OK
Starting kernel ... (卡在這裡) )
問題原因:多半是kernel沒編譯成功。
确認configure參數是否配置正确,是否選擇了正确的目标編譯平台,如smdk2410等。
3.不能啟動kernel
Starting kernel ...
Uncompressing Linux.........................................................
.................... done, booting the kernel.
問題原因:可能是Bootargs參數設定錯誤,确認bootargs設定是否正确。
4.不能挂載nfs
eth0: link up
IP-Config: Complete:
device=eth0, addr=192.168.167.15, mask=255.255.255.0, gw=192.168.167.254,
host=192.168.167.15, domain=, nis-domain=(none),
bootserver=192.168.167.170, rootserver=192.168.167.170, rootpath=
Looking up port of RPC 100003/2 on 192.168.167.170
Root-NFS: Unable to get nfsd port number from server, using default
Looking up port of RPC 100005/1 on 192.168.167.170
Root-NFS: Unable to get mountd port number from server, using default
mount: server 192.168.167.170 not responding, timed out
Root-NFS: Server returned error -5 while mounting /work/nfs/rootfs_bluetooth_omap
VFS: Unable to mount root fs via NFS, trying floppy.
VFS: Cannot open root device "nfs" or unknown-block(2,0)
Please append a correct "root=" boot option
Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(2,0)
問題原因:這種情況通常是nfs配置問題。
确認uboot的bootargs參數裡和nfs相關的ip位址資訊設定是否正确,以及Host機/etc/exports配置無誤,重起nfs服務,重新嘗試連接配接。另外還需要注意bootargs内console和mem兩個參數的設定。kernel2.6後console最好設定為ttySAC0,mem也要根據開發闆實際情況設定正确。
5.檔案系統不能啟動問題
eth0: link up
IP-Config: Complete:
device=eth0, addr=192.168.167.15, mask=255.255.255.0, gw=192.168.167.254,
host=192.168.167.15, domain=, nis-domain=(none),
bootserver=192.168.167.170, rootserver=192.168.167.170, rootpath=
Looking up port of RPC 100003/2 on 192.168.167.170
Looking up port of RPC 100005/1 on 192.168.167.170
VFS: Mounted root (nfs filesystem).
Freeing init memory: 128K
/sbin/initKernel panic - not syncing: Attempted to kill init!
問題原因:制作的檔案系統缺少運作busybox所需的libcrypt.so庫,新版本會有缺庫提示,老版本(1.60)沒有。
注:運作一個busybox檔案系統至少需要如下幾個庫:
ld-linux.so.x
libc.so.6
libcrypt.so.x
較新版本的busybox可能還需要
libm.so.6
libgcc_s.so.x
(x為版本号)
6.檔案系統不能啟動問題2
eth0: link up
IP-Config: Complete:
device=eth0, addr=192.168.167.15, mask=255.255.255.0, gw=192.168.167.254,
host=192.168.167.15, domain=, nis-domain=(none),
bootserver=192.168.167.170, rootserver=192.168.167.170, rootpath=
Looking up port of RPC 100003/2 on 192.168.167.170
Looking up port of RPC 100005/1 on 192.168.167.170
VFS: Mounted root (nfs filesystem).
Freeing init memory: 128K
Kernel panic - not syncing: No init found. Try passing init= option to kernel.
問題原因1:對比一個可用的檔案系統後發現,缺少了ld-linux.so.x庫,檔案系統裡隻有ld-linux.so.x的連接配接檔案,少拷了庫檔案。
問題原因2:使用的編譯器為4.3.x版本,但是核心沒有添加對EBAI的支援。
解決辦法:
修改Kernel Features --->
[*] Use the ARM EABI to compile the kernel
[*] Allow old ABI binaries to run with this kernel (EXPERIMENTA)
把這個選上。
問題原因3:NAND FLASH啟動時的ECC校驗問題.
解決辦法:
修改Device Drivers --->
[*] Memory Technology Device(MTD) support --->
[*] NAND Device Support --->
[*] S3C2410 NAND Hardware ECC
8.不能獲得帳戶UID資訊
Could not get password database information for UID of current process: User "???" unknown or no memory to allocate
password entry
Unknown username "root" in message bus configuration file
Could not get password database information for UID of current process: User "???" unknown or no memory to allocate
password entry
Failed to start message bus: Could not get UID and GID for username "root"
問題原因:
情況一:系統帳戶驗證出現問題.懷疑是調用getuid、getguid時并沒有傳回正确值,可能是缺少帳戶驗證相關庫,實際排查後發現,缺少libnss_files庫。拷貝交叉編譯器的libnss_files庫到檔案系統後,啟動檔案系統成功。
情況二:系統沒有root帳号。可以由whoami指令看出。
手動建立帳号。
#vi /etc/passwd
root:x:0:0:root:/root:/bin/sh
kyo:x:500:500:kyo:/home/kyo:/bin/bash
添加組
#vi group
root:x:0:root
9.
Freeing init memory: 128K
init started: BusyBox v1.6.1 (2007-08-27 14:33:15 CST) multi-call binary
starting pid 834, tty '': '/etc/init.d/rcS'
Cannot run '/etc/init.d/rcS': No such file or directory
Please press Enter to activate this console.
發現沒有/etc/init.d/rcS檔案系統一樣能正常啟動。看來rcS隻是用來設定一些随機啟動的參數,對檔案能否正常運作關系不大。
注:這個不是錯誤,是偶然發現! :)
10.
<span style="color:#cc0000">linux 核心啟動過程中,自己編寫的字元驅動程式在建立裝置節點時提示lp:driver loaded but no devices found.</span>
目前,這個問題還沒有找到具體原因,其中我使用的是yaffs2檔案系統時才提示這個錯誤,目前初步确定是在配置核心的過程中導緻的,具體原因分析中。。。