使用 uboot 通过 LAN 启动

使用 uboot 通过 LAN 启动

我正在尝试启动我的比格尔骨通过局域网。我可以从 TFTP 服务器下载内核 uImage。这就是我所做的 -

U-Boot SPL 2011.09-00053-gb423c52 (Aug 10 2012 - 11:26:55)
Texas Instruments Revision detection unimplemented
No daughter card present
OMAP SD/MMC: 0
reading u-boot.img
reading u-boot.img


U-Boot 2011.09-00053-gb423c52 (Aug 10 2012 - 11:26:55)

I2C:   ready
DRAM:  256 MiB
WARNING: Caches not enabled
No daughter card present
NAND:  HW ECC Hamming Code selected
No NAND device found!!!
0 MiB
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
*** Warning - readenv() failed, using default environment

Net:   cpsw
Hit any key to stop autoboot:  0
U-Boot# dhcp
link up on port 0, speed 100, full duplex
BOOTP broadcast 1
BOOTP broadcast 2
DHCP client bound to address 192.1.1.101
Using cpsw device
TFTP from server 192.1.1.254; our IP address is 192.1.1.101
Filename 'uImage-BBone'.
Load address: 0x82000000
Loading: #################################################################
         #################################################################
         #################################################################
         ################################
done
Bytes transferred = 3319832 (32a818 hex)
U-Boot# bootm
## Booting kernel from Legacy Image at 82000000 ...
   Image Name:   Angstrom/3.2.28/beaglebone
   Image Type:   ARM Linux Kernel Image (uncompressed)
   Data Size:    3319768 Bytes = 3.2 MiB
   Load Address: 80008000
   Entry Point:  80008000
   Verifying Checksum ... OK
   Loading Kernel Image ... OK
OK

Starting kernel ...

Uncompressing Linux... done, booting the kernel.
  1. 我没有指定0x82000000的加载地址。 Uboot 似乎自己选择了这一切。 uImage 下载到哪里有关系吗?
  2. 发出命令后我在控制台上看到的第二个加载地址bootm(加载地址:80008000&入口点:80008000)是标准地址吗?内核映像是否必须位于内存中的特定位置?
  3. 我被困在这之后。没有虚拟磁盘。如何加载虚拟磁盘?我如何告诉内核在特定的内存位置查找它?我使用的图像是从下载的这里。我是否需要创建一个新映像才能使用 ramdisk?此时我可以使用 NFS 挂载吗?什么时候可以挂载NFS分区作为根文件系统?

相关内容