Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/arch/bebox/stand/mkbootimage Pull up revision 1.3 (...



details:   https://anonhg.NetBSD.org/src/rev/419c353722ac
branches:  netbsd-1-5
changeset: 491304:419c353722ac
user:      he <he%NetBSD.org@localhost>
date:      Sun Apr 22 18:09:24 2001 +0000

description:
Pull up revision 1.3 (requested by briggs):
  Allow the file to be built on a big-endian (like the BeBox!)
  system.

diffstat:

 sys/arch/bebox/stand/mkbootimage/mkbootimage.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r dd05ca0acd7e -r 419c353722ac sys/arch/bebox/stand/mkbootimage/mkbootimage.c
--- a/sys/arch/bebox/stand/mkbootimage/mkbootimage.c    Sun Apr 22 18:07:14 2001 +0000
+++ b/sys/arch/bebox/stand/mkbootimage/mkbootimage.c    Sun Apr 22 18:09:24 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mkbootimage.c,v 1.1 1999/06/28 00:35:23 sakamoto Exp $ */
+/*     $NetBSD: mkbootimage.c,v 1.1.12.1 2001/04/22 18:09:24 he Exp $  */
 
 /*
  * Copyright (c) 1999 Christopher G. Demetriou.  All rights reserved.
@@ -46,7 +46,7 @@
 #if BYTE_ORDER == LITTLE_ENDIAN
 #define        BO(x)   bswap32(x)
 #else
-#define        BO(x)
+#define        BO(x)   (x)
 #endif
 
 static void usage(void);



Home | Main Index | Thread Index | Old Index