From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Mon, 27 Aug 2007 11:20:28 -0400 Subject: [U-Boot-Users] Booting the Linux image via nfs In-Reply-To: References: Message-ID: <46D2EBBC.6020100@qstreams.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Mirek, Miroslaw Dach wrote: > Hi Ben, > > I have configured tftp server and there is no problem to load > uImage but I was just wandering if it is also possible to use nfs since my > aim is to mount root file system via nfs so I thought that it would be > just easier to deal with one server (I mean nfs) than with two nfs and > tftp. > > > Best Regards > > Mirek > Yeah, it sounds like a nice idea to use the same protocol for everything, but another way of looking at it is to use the protocol that's best-suited for the job. TFTP was designed to efficiently move large blocks of data in one direction. NFS was designed with very different and much more complicated goals. As you've seen, the U-boot implementation is very lean and that's the way it should be, since file systems play a very limited role in bootloaders. The overhead and maintenance of running a TFTP server is, well, trivial. regards, Ben