public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [Patch] default filename of tftp and nfs
@ 2004-12-05 18:35 Hiroshi Ito
  2004-12-05 18:38 ` [U-Boot-Users] " Hiroshi Ito
  0 siblings, 1 reply; 3+ messages in thread
From: Hiroshi Ito @ 2004-12-05 18:35 UTC (permalink / raw)
  To: u-boot

Hello,

default filename of tftp and nfs has different value between little endian
machine and big one.

This patch fixes endian problem.

Patch is for current cvs.

--------
Hiroshi Ito
Media Lab. Inc.,
URL http://www.mlb.co.jp ( Sorry, Japanese only. )
TEL +81-3-5294-7255  FAX +81-3-5294-7256
-------------- next part --------------
Index: common/command.c
===================================================================
RCS file: /cvsroot/u-boot/u-boot/common/command.c,v
retrieving revision 1.17
diff -u -b -B -w -p -r1.17 command.c
--- common/command.c	18 Apr 2004 17:39:39 -0000	1.17
+++ common/command.c	26 Nov 2004 12:06:12 -0000
@@ -136,9 +136,9 @@ do_test (cmd_tbl_t *cmdtp, int flag, int
 
 		if (adv == 2) {
 			if (strcmp(ap[0], "-z") == 0)
-				expr = strlen(ap[1]) == 0 ? 0 : 1;
-			else if (strcmp(ap[0], "-n") == 0)
 				expr = strlen(ap[1]) == 0 ? 1 : 0;
+			else if (strcmp(ap[0], "-n") == 0)
+				expr = strlen(ap[1]) == 0 ? 0 : 1;
 			else {
 				expr = 1;
 				break;

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot-Users] Re: [Patch] default filename of tftp and nfs
  2004-12-05 18:35 [U-Boot-Users] [Patch] default filename of tftp and nfs Hiroshi Ito
@ 2004-12-05 18:38 ` Hiroshi Ito
  2005-08-03 23:11   ` Wolfgang Denk
  0 siblings, 1 reply; 3+ messages in thread
From: Hiroshi Ito @ 2004-12-05 18:38 UTC (permalink / raw)
  To: u-boot

Sorry, I attached wrong file.

Here is a correct patch.

From: Hiroshi Ito <ito@mlb.co.jp>
Subject: [Patch] default filename of tftp and nfs
Date: Mon, 06 Dec 2004 03:35:22 +0900
Message-Id: <20041206033522R.ito@mlb.co.jp>
> Hello,
> 
> default filename of tftp and nfs has different value between little endian
> machine and big one.
> 
> This patch fixes endian problem.
> 
> Patch is for current cvs.
> 
> --------
> Hiroshi Ito
> Media Lab. Inc.,
> URL http://www.mlb.co.jp ( Sorry, Japanese only. )
> TEL +81-3-5294-7255  FAX +81-3-5294-7256
-------------- next part --------------
Index: net/nfs.c
===================================================================
RCS file: /cvsroot/u-boot/u-boot/net/nfs.c,v
retrieving revision 1.8
diff -u -b -B -w -p -r1.8 nfs.c
--- net/nfs.c	28 Sep 2004 21:51:43 -0000	1.8
+++ net/nfs.c	5 Dec 2004 18:24:36 -0000
@@ -703,13 +703,11 @@ NfsStart (void)
 	}
 
 	if (BootFile[0] == '\0') {
-		IPaddr_t OurIP = ntohl (NetOurIP);
-
 		sprintf (default_filename, "/nfsroot/%02lX%02lX%02lX%02lX.img",
-			OurIP & 0xFF,
-			(OurIP >>  8) & 0xFF,
-			(OurIP >> 16) & 0xFF,
-			(OurIP >> 24) & 0xFF	);
+			NetOurIP & 0xFF,
+			(NetOurIP >>  8) & 0xFF,
+			(NetOurIP >> 16) & 0xFF,
+			(NetOurIP >> 24) & 0xFF	);
 		strcpy (nfs_path, default_filename);
 
 		printf ("*** Warning: no boot file name; using '%s'\n",
Index: net/tftp.c
===================================================================
RCS file: /cvsroot/u-boot/u-boot/net/tftp.c,v
retrieving revision 1.9
diff -u -b -B -w -p -r1.9 tftp.c
--- net/tftp.c	15 Apr 2004 21:48:55 -0000	1.9
+++ net/tftp.c	5 Dec 2004 18:24:36 -0000
@@ -302,13 +302,11 @@ void
 TftpStart (void)
 {
 	if (BootFile[0] == '\0') {
-		IPaddr_t OurIP = ntohl(NetOurIP);
-
 		sprintf(default_filename, "%02lX%02lX%02lX%02lX.img",
-			OurIP & 0xFF,
-			(OurIP >>  8) & 0xFF,
-			(OurIP >> 16) & 0xFF,
-			(OurIP >> 24) & 0xFF	);
+			NetOurIP & 0xFF,
+			(NetOurIP >>  8) & 0xFF,
+			(NetOurIP >> 16) & 0xFF,
+			(NetOurIP >> 24) & 0xFF	);
 		tftp_filename = default_filename;
 
 		printf ("*** Warning: no boot file name; using '%s'\n",

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot-Users] Re: [Patch] default filename of tftp and nfs
  2004-12-05 18:38 ` [U-Boot-Users] " Hiroshi Ito
@ 2005-08-03 23:11   ` Wolfgang Denk
  0 siblings, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2005-08-03 23:11 UTC (permalink / raw)
  To: u-boot

In message <20041206033801V.ito@mlb.co.jp> you wrote:
>
> > default filename of tftp and nfs has different value between little endian
> > machine and big one.
> > 
> > This patch fixes endian problem.

Added, thanks.

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Confound these ancestors.... They've stolen our best ideas!"
- Ben Jonson

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-08-03 23:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-05 18:35 [U-Boot-Users] [Patch] default filename of tftp and nfs Hiroshi Ito
2004-12-05 18:38 ` [U-Boot-Users] " Hiroshi Ito
2005-08-03 23:11   ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox