hi,
I am trying to mount rootfs through nfs, but i am getting kernel panic.
complete boot.log is pasted
thanks
boot scr : http://pastebin.com/wc5NQUH3
boot log : http://pastebin.com/EPnWTNkC
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
hi,
I am trying to mount rootfs through nfs, but i am getting kernel panic.
complete boot.log is pasted
thanks
boot scr : http://pastebin.com/wc5NQUH3
boot log : http://pastebin.com/EPnWTNkC
Parimal,
ip=dhcp is not supported in Beagleboard. Please use MMC Filesystem.
Regards,
Arun
Beagleboard Xm has ethernet functinality over usb. It is not possible to use NFS since ip=dhcp is not available.
Regards,
Arun
I use NFS root file system. With the uImage in the first partition of SD card. I disabled dhcp for ip and set a static IP
address for the board. The server is also having a static ip address. This is my boot.cmd file. Hope this might help,
if fatload mmc 0 80200000 uImage
then
echo ***** Kernel: /dev/mmcblk0p1/uImage *****
fi
echo ***** RootFS: Using NFS *****
setenv ip 172.16.10.247
setenv serverpath /tftpboot/android_rootfs
setenv serverip 172.16.10.91
setenv nfsroot ${serverip}:${serverpath},nolock,tcp,rsize=1024,wsize=1024
setenv bootargs console=ttyS2,115200n8 rw rootwait rootfstype=ext3 rootdelay=1 androidboot.console=ttyS2 nfsroot=${nfsroot} ip=${ip} root=/dev/nfs init=/init mem=384M mpurate=1000 omap_vout.vid1_static_vrfb_alloc=y vram=16M omapfb.vram=0:8M,1:4M,2:4M omapfb.mode=dvi:1024x768MR-16 omapdss.def_disp=dvi
bootm 0x80200000
(Forget the mem thing, I am having issues with it in gingerbread-dsp)