pandaboard does not have any eMMC or NAND to save the saveenv And current u-boot we dont supoprt the saveenv in external eMMC card.
So best solution using boot.scr boot.scr is the boot script used by u-boot. Basically boot.scr loads the kernel (plus an optional initrd), set the bootargs and jumps into the kernel entry point.
Step-1: create a boot.src.txt as like - fatload mmc 0 0x80300000 uImage echo Booting from mmc0 ... setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init root=/dev/mmcblk0p2 rootwait rw loglevel=8 bootm 80300000
Step-2: run mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d boot.scr.txt boot.scr
Step-3: copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external *MMC/SD* card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount Thanks Srinidhi Sent from Nokia Phone
pandaboard does not have any eMMC or NAND to save the saveenv And current u-boot we dont supoprt the saveenv in external eMMC card.
So best solution using boot.scr boot.scr is the boot script used by u-boot. Basically boot.scr loads the kernel (plus an optional initrd), set the bootargs and jumps into the kernel entry point.
Step-1: create a boot.src.txt as like - fatload mmc 0 0x80300000 uImage echo Booting from mmc0 ... setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init root=/dev/mmcblk0p2 rootwait rw loglevel=8 bootm 80300000
Step-2: run mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d boot.scr.txt boot.scr
Step-3: copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
Regards Ghorai
On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
> how to do the saveenv on pandaboard. want to save new bootargs
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
On Mon, Jan 10, 2011 at 11:59 PM, Thondar, Geetha <geet...@ti.com> wrote: > Srinidhi > I tested the kernel with the latest pull and Ethernet works fine. Are you > using "ip=dhcp" in your boot args?
> I have tested pinging other ips in the network. Internet browsing should > work too.
> Are you trying NFS? We haven't tested NFS on Pandroid.
> Thanks > Geetha
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Monday, January 10, 2011 11:21 AM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the > listed features. But ethernet s not getting initialised during boot. > Geetha had uploaded a patch which should enable ethernet in > android_panda_defconfig. Even that s not working. The only kernel image in > which ethernet gettin initialised is pre built kernel image with gfx enabled > in it.
> Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Anand Gadiyar > Sent: 10/01/2011 9:28:18 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the > EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet > controller.
> (CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending > on which kernel version you're using).
> On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > > Even ping from u boot doesnt work right? Also what should be enabled in > config file in kernel to enable ethernet. I wanna use nfs mount > > Thanks > > Srinidhi > > Sent from Nokia Phone > > -----Original Message----- > > From: Sukumar Ghorai > > Sent: 07/01/2011 6:43:58 pm > > Subject: Re: [pandaboard] saveenv for pandaboard
> > pandaboard does not have any eMMC or NAND to save the saveenv > > And current u-boot we dont supoprt the saveenv in external eMMC card.
> > So best solution using boot.scr > > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > > kernel (plus an optional initrd), set the bootargs and jumps into the > kernel > > entry point.
> > Step-1: create a boot.src.txt as like - > > fatload mmc 0 0x80300000 uImage > > echo Booting from mmc0 ... > > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > > bootm 80300000
> > Step-2: run > > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > > boot.scr.txt boot.scr
> > Step-3: > > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> > Regards > > Ghorai
> > On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
> >> how to do the saveenv on pandaboard. want to save new bootargs
Srinidhi, Which release is uImage_gfx from? I don't see it in the downloads list and I think it is in one of the tar files. Please refer to the release number and pick the corresponding kernel from http://gitorious.org/pandroid/kernel-omap Please compare that config with the current config to see what the difference is.
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 7:52 PM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, I am using ip="static ip address"
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 10/01/2011 11:59:31 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
Hi Geetha, Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it comes in tar file. Tar contains two kernels uImage and uImage_gfx. Ya i ll diff two config files and will check out the difference. Thanks for the pointer.
Srinidhi, Which release is uImage_gfx from? I don't see it in the downloads list and I think it is in one of the tar files. Please refer to the release number and pick the corresponding kernel from http://gitorious.org/pandroid/kernel-omap Please compare that config with the current config to see what the difference is.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 7:52 PM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, I am using ip="static ip address"
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 10/01/2011 11:59:31 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Tuesday, January 11, 2011 11:15 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it comes in tar file. Tar contains two kernels uImage and uImage_gfx. Ya i ll diff two config files and will check out the difference. Thanks for the pointer.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 11/01/2011 10:26:55 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi, Which release is uImage_gfx from? I don't see it in the downloads list and I think it is in one of the tar files. Please refer to the release number and pick the corresponding kernel from http://gitorious.org/pandroid/kernel-omap Please compare that config with the current config to see what the difference is.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 7:52 PM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, I am using ip="static ip address"
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 10/01/2011 11:59:31 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Tuesday, January 11, 2011 11:15 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it comes in tar file. Tar contains two kernels uImage and uImage_gfx. Ya i ll diff two config files and will check out the difference. Thanks for the pointer.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 11/01/2011 10:26:55 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi, Which release is uImage_gfx from? I don't see it in the downloads list and I think it is in one of the tar files. Please refer to the release number and pick the corresponding kernel from http://gitorious.org/pandroid/kernel-omap Please compare that config with the current config to see what the difference is.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 7:52 PM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, I am using ip="static ip address"
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 10/01/2011 11:59:31 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
Hi Geetha, I could fix the problem, but the cause seems to be very peculiar for me Ethernet gets initialized (with android_panda_defconfig) and NFS mount is success every time but fails only when i use MLO which i have built.
How did I build X-loader? source: git://gitorious.org/pandaboard/x-loader.git branch: origin/omap4_panda_L24.9 config: omap4430panda_config
I am unable to figure it out how they are linked. But that is what I have observed after some permutation and combinations.
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Tuesday, January 11, 2011 11:15 AM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Hi Geetha, > Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it > comes in tar file. Tar contains two kernels uImage and uImage_gfx. > Ya i ll diff two config files and will check out the difference. Thanks for > the pointer.
> Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Thondar, Geetha > Sent: 11/01/2011 10:26:55 pm > Subject: RE: [pandaboard] saveenv for pandaboard
> Srinidhi, > Which release is uImage_gfx from? I don't see it in the downloads list and > I think it is in one of the tar files. Please refer to the release number > and pick the corresponding kernel from > http://gitorious.org/pandroid/kernel-omap > Please compare that config with the current config to see what the > difference is.
> Thanks > Geetha
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Monday, January 10, 2011 7:52 PM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Hi Geetha, > I am using ip="static ip address"
> This boot arg works fine with uImage _gfx for nfs mount. > Is there any way to get config file of uImage_gfx? I am curious to learn > how one works with nfs mount but not other, for the same boot arg. > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Thondar, Geetha > Sent: 10/01/2011 11:59:31 pm > Subject: RE: [pandaboard] saveenv for pandaboard
> Srinidhi > I tested the kernel with the latest pull and Ethernet works fine. Are you > using "ip=dhcp" in your boot args?
> I have tested pinging other ips in the network. Internet browsing should > work too.
> Are you trying NFS? We haven't tested NFS on Pandroid.
> Thanks > Geetha
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Monday, January 10, 2011 11:21 AM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the > listed features. But ethernet s not getting initialised during boot. > Geetha had uploaded a patch which should enable ethernet in > android_panda_defconfig. Even that s not working. The only kernel image in > which ethernet gettin initialised is pre built kernel image with gfx enabled > in it.
> Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Anand Gadiyar > Sent: 10/01/2011 9:28:18 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the > EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet > controller.
> (CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending > on which kernel version you're using).
> On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > > Even ping from u boot doesnt work right? Also what should be enabled in > config file in kernel to enable ethernet. I wanna use nfs mount > > Thanks > > Srinidhi > > Sent from Nokia Phone > > -----Original Message----- > > From: Sukumar Ghorai > > Sent: 07/01/2011 6:43:58 pm > > Subject: Re: [pandaboard] saveenv for pandaboard
> > pandaboard does not have any eMMC or NAND to save the saveenv > > And current u-boot we dont supoprt the saveenv in external eMMC card.
> > So best solution using boot.scr > > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > > kernel (plus an optional initrd), set the bootargs and jumps into the > kernel > > entry point.
> > Step-1: create a boot.src.txt as like - > > fatload mmc 0 0x80300000 uImage > > echo Booting from mmc0 ... > > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > > bootm 80300000
> > Step-2: run > > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > > boot.scr.txt boot.scr
> > Step-3: > > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> > Regards > > Ghorai
> > On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
> >> how to do the saveenv on pandaboard. want to save new bootargs
________________________________ From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of Srinidhi K V Sent: Wednesday, January 12, 2011 5:20 AM To: pandaboard@googlegroups.com Subject: Re: [pandaboard] saveenv for pandaboard
Hi Geetha, I could fix the problem, but the cause seems to be very peculiar for me Ethernet gets initialized (with android_panda_defconfig) and NFS mount is success every time but fails only when i use MLO which i have built.
How did I build X-loader? source: git://gitorious.org/pandaboard/x-loader.git<http://gitorious.org/pandaboard/x-loader.git> branch: origin/omap4_panda_L24.9 config: omap4430panda_config
I am unable to figure it out how they are linked. But that is what I have observed after some permutation and combinations.
Thanks Srinidhi
On Tue, Jan 11, 2011 at 10:46 PM, Thondar, Geetha <geet...@ti.com<mailto:geet...@ti.com>> wrote:
-----Original Message----- From: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> [mailto:pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com>] On Behalf Of srinidhi Sent: Tuesday, January 11, 2011 11:15 AM To: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it comes in tar file. Tar contains two kernels uImage and uImage_gfx. Ya i ll diff two config files and will check out the difference. Thanks for the pointer.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 11/01/2011 10:26:55 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi, Which release is uImage_gfx from? I don't see it in the downloads list and I think it is in one of the tar files. Please refer to the release number and pick the corresponding kernel from http://gitorious.org/pandroid/kernel-omap Please compare that config with the current config to see what the difference is.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> [mailto:pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com>] On Behalf Of srinidhi Sent: Monday, January 10, 2011 7:52 PM To: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> Subject: RE: [pandaboard] saveenv for pandaboard
Hi Geetha, I am using ip="static ip address"
This boot arg works fine with uImage _gfx for nfs mount. Is there any way to get config file of uImage_gfx? I am curious to learn how one works with nfs mount but not other, for the same boot arg. Srinidhi Sent from Nokia Phone -----Original Message----- From: Thondar, Geetha Sent: 10/01/2011 11:59:31 pm Subject: RE: [pandaboard] saveenv for pandaboard
Srinidhi I tested the kernel with the latest pull and Ethernet works fine. Are you using "ip=dhcp" in your boot args?
I have tested pinging other ips in the network. Internet browsing should work too.
Are you trying NFS? We haven't tested NFS on Pandroid.
Thanks Geetha
-----Original Message----- From: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> [mailto:pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com>] On Behalf Of srinidhi Sent: Monday, January 10, 2011 11:21 AM To: pandaboard@googlegroups.com<mailto:pandaboard@googlegroups.com> Subject: RE: [pandaboard] saveenv for pandaboard
Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the listed features. But ethernet s not getting initialised during boot. Geetha had uploaded a patch which should enable ethernet in android_panda_defconfig. Even that s not working. The only kernel image in which ethernet gettin initialised is pre built kernel image with gfx enabled in it.
Srinidhi Sent from Nokia Phone -----Original Message----- From: Anand Gadiyar Sent: 10/01/2011 9:28:18 pm Subject: Re: [pandaboard] saveenv for pandaboard
Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet controller.
(CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending on which kernel version you're using).
On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com<mailto:srinidhi....@gmail.com>> wrote: > Even ping from u boot doesnt work right? Also what should be enabled in config file in kernel to enable ethernet. I wanna use nfs mount > Thanks > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Sukumar Ghorai > Sent: 07/01/2011 6:43:58 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> pandaboard does not have any eMMC or NAND to save the saveenv > And current u-boot we dont supoprt the saveenv in external eMMC card.
> So best solution using boot.scr > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > kernel (plus an optional initrd), set the bootargs and jumps into the kernel > entry point.
> Step-1: create a boot.src.txt as like - > fatload mmc 0 0x80300000 uImage > echo Booting from mmc0 ... > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > bootm 80300000
> Step-2: run > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > boot.scr.txt boot.scr
> Step-3: > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> Regards > Ghorai
> On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com<mailto:vinoda...@gmail.com>> wrote:
>> how to do the saveenv on pandaboard. want to save new bootargs
> *From:* pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] *On > Behalf Of *Srinidhi K V > *Sent:* Wednesday, January 12, 2011 5:20 AM > *To:* pandaboard@googlegroups.com
> *Subject:* Re: [pandaboard] saveenv for pandaboard
> Hi Geetha, > I could fix the problem, but the cause seems to be very peculiar for me > Ethernet gets initialized (with android_panda_defconfig) and NFS mount is > success every time but fails only when i use MLO which i have built.
> How did I build X-loader? > source: git://gitorious.org/pandaboard/x-loader.git > branch: origin/omap4_panda_L24.9 > config: omap4430panda_config
> I am unable to figure it out how they are linked. But that is what I have > observed after some permutation and combinations.
> Thanks > Srinidhi
> On Tue, Jan 11, 2011 at 10:46 PM, Thondar, Geetha <geet...@ti.com> wrote:
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi
> Sent: Tuesday, January 11, 2011 11:15 AM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Hi Geetha, > Kernel which i was referring to is L 27.5.2(2.6.32). Yeah as you said it > comes in tar file. Tar contains two kernels uImage and uImage_gfx. > Ya i ll diff two config files and will check out the difference. Thanks for > the pointer.
> Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Thondar, Geetha > Sent: 11/01/2011 10:26:55 pm > Subject: RE: [pandaboard] saveenv for pandaboard
> Srinidhi, > Which release is uImage_gfx from? I don't see it in the downloads list and > I think it is in one of the tar files. Please refer to the release number > and pick the corresponding kernel from > http://gitorious.org/pandroid/kernel-omap > Please compare that config with the current config to see what the > difference is.
> Thanks > Geetha
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Monday, January 10, 2011 7:52 PM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Hi Geetha, > I am using ip="static ip address"
> This boot arg works fine with uImage _gfx for nfs mount. > Is there any way to get config file of uImage_gfx? I am curious to learn > how one works with nfs mount but not other, for the same boot arg. > Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Thondar, Geetha > Sent: 10/01/2011 11:59:31 pm > Subject: RE: [pandaboard] saveenv for pandaboard
> Srinidhi > I tested the kernel with the latest pull and Ethernet works fine. Are you > using "ip=dhcp" in your boot args?
> I have tested pinging other ips in the network. Internet browsing should > work too.
> Are you trying NFS? We haven't tested NFS on Pandroid.
> Thanks > Geetha
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On > Behalf Of srinidhi > Sent: Monday, January 10, 2011 11:21 AM > To: pandaboard@googlegroups.com > Subject: RE: [pandaboard] saveenv for pandaboard
> Thanks for the reply. I am using 2.6.35 kernel. I have enabled all the > listed features. But ethernet s not getting initialised during boot. > Geetha had uploaded a patch which should enable ethernet in > android_panda_defconfig. Even that s not working. The only kernel image in > which ethernet gettin initialised is pre built kernel image with gfx enabled > in it.
> Srinidhi > Sent from Nokia Phone > -----Original Message----- > From: Anand Gadiyar > Sent: 10/01/2011 9:28:18 pm > Subject: Re: [pandaboard] saveenv for pandaboard
> Enable CONFIG_USB_EHCI_HCD and CONFIG_USB_EHCI_HCD_OMAP3 to get the > EHCI driver built-in, and CONFIG_USB_NET_SMSC95XX for the ethernet > controller.
> (CONFIG_USB_EHCI_HCD_OMAP3 might be CONFIG_USB_EHCI_HCD_OMAP depending > on which kernel version you're using).
> On Fri, Jan 7, 2011 at 6:52 PM, srinidhi <srinidhi....@gmail.com> wrote: > > Even ping from u boot doesnt work right? Also what should be enabled in > config file in kernel to enable ethernet. I wanna use nfs mount > > Thanks > > Srinidhi > > Sent from Nokia Phone > > -----Original Message----- > > From: Sukumar Ghorai > > Sent: 07/01/2011 6:43:58 pm > > Subject: Re: [pandaboard] saveenv for pandaboard
> > pandaboard does not have any eMMC or NAND to save the saveenv > > And current u-boot we dont supoprt the saveenv in external eMMC card.
> > So best solution using boot.scr > > boot.scr is the boot script used by u-boot. Basically boot.scr loads the > > kernel (plus an optional initrd), set the bootargs and jumps into the > kernel > > entry point.
> > Step-1: create a boot.src.txt as like - > > fatload mmc 0 0x80300000 uImage > > echo Booting from mmc0 ... > > setenv bootargs console=tty02,115200n8 noinitrd init=/sbin/init > > root=/dev/mmcblk0p2 rootwait rw loglevel=8 > > bootm 80300000
> > Step-2: run > > mkimage -A arm -T script -O linux -C none -a 0 -e 0 -n "boot.scr" -d > > boot.scr.txt boot.scr
> > Step-3: > > copy boot.scr along with MLO, u-boot and uImage in MMC/SD boot partition.
> > Regards > > Ghorai
> > On Fri, Jan 7, 2011 at 4:15 PM, V <vinoda...@gmail.com> wrote:
> >> how to do the saveenv on pandaboard. want to save new bootargs
Probably use the one mentioned on the wiki: http://omappedia.org/wiki/PandaBoard - follow links for source trees and then for bootloader. Helps keep wiki up-to-date too!
-----Original Message----- From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of luca ellero Sent: Friday, January 28, 2011 4:13 PM To: pandaboard@googlegroups.com Subject: [pandaboard] x-loader version
Hi everybody, I have seen that there are two version of x-loader supporting pandaboard:
> Probably use the one mentioned on the wiki: http://omappedia.org/wiki/PandaBoard - follow links for source trees and then for bootloader. > Helps keep wiki up-to-date too!
> Vikas
> -----Original Message----- > From: pandaboard@googlegroups.com [mailto:pandaboard@googlegroups.com] On Behalf Of luca ellero > Sent: Friday, January 28, 2011 4:13 PM > To: pandaboard@googlegroups.com > Subject: [pandaboard] x-loader version
> Hi everybody, > I have seen that there are two version of x-loader supporting pandaboard: