]> www.infradead.org Git - users/rw/ppcboot.git/commitdiff
Use whole EEPROM for environment.
authorwdenk <wdenk>
Mon, 23 Jul 2001 09:35:41 +0000 (09:35 +0000)
committerwdenk <wdenk>
Mon, 23 Jul 2001 09:35:41 +0000 (09:35 +0000)
Add hint to EADME that GNU "make" is needed (for NetBSD).

Makefile
README
include/config_TQM8260.h
include/config_lwmon.h
include/version.h

index 9b560e7d6e2114d3dec9af9d8682651e1140af45..85c1928c38fe73565e8362fc3593cc5d1d8b0247 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -459,18 +459,20 @@ EVB64260_config: unconfig
 #########################################################################
 
 clean:
-       rm -f `find . -type f \
+       find . -type f \
                \( -name 'core' -o -name '*.bak' -o -name '*~' \
-               -o -name '*.o'  -o -name '*.a'  \) -print`
+               -o -name '*.o'  -o -name '*.a'  \) -print \
+               | xargs rm -f
        rm -f examples/hello_world examples/timer
        rm -f tools/img2srec tools/mkimage tools/envcrc tools/gen_eth_addr
        rm -f tools/easylogo/easylogo
        rm -f tools/gdb/astest tools/gdb/gdbcont tools/gdb/gdbsend
 
 clobber:       clean
-       rm -f `find . -type f \
+       find . -type f \
                \( -name .depend -o -name '*.srec' -o -name '*.bin' \) \
-               -print`
+               -print \
+               | xargs rm -f
        rm -f $(OBJS) *.bak tags TAGS
        rm -fr *.*~
        rm -f ppcboot ppcboot.bin ppcboot.elf ppcboot.srec ppcboot.map
diff --git a/README b/README
index 800760d616e3a6c52c204d6020015b0c695ed545..34b27db94de758845accc2bdf35b9a327715168d 100644 (file)
--- a/README
+++ b/README
@@ -803,7 +803,7 @@ Building the Software:
 ======================
 
 Building PPCBoot has been tested in native PPC environments (on a
-PowerBook G# running LinuxPPC 2000) and in cross environments
+PowerBook G3 running LinuxPPC 2000) and in cross environments
 (running RedHat 6.x and 7.x Linux on x86, Solaris 2.6 on a SPARC, and
 NetBSD 1.5 on x86).
 
@@ -849,6 +849,11 @@ images ready for downlod to / installation on your system:
 - "ppscoot.srec" is in Motorola S-Record format
 
 
+Please be aware that the Makefiles assume you are using GNU make, so
+for instance on NetBSD you might need to use "gmake" instead of
+native "make".
+
+
 If the system board that you have is not listed, then you will need
 to port PPCBoot to your hardware platform. To do this, follow these
 steps:
index d60ddcde5e6a75572dce6bf59b5624be46405b0f..c12fe217f5dd5cd45858c03086977dfa7a84efeb 100644 (file)
 /* Final version: environment in EEPROM */
 #define CFG_ENV_IS_IN_EEPROM   1
 #define CFG_ENV_OFFSET         0
-#define CFG_ENV_SIZE           1024
+#define CFG_ENV_SIZE           2048
 #endif
 
 /*-----------------------------------------------------------------------
index 1ed796795175f9d7b1004732315ea024af15129b..5f2eafbd167a90048bb2bee6889a6c57e3b5fced 100644 (file)
 /* Final version: environment in EEPROM */
 #define CFG_ENV_IS_IN_EEPROM   1
 #define CFG_ENV_OFFSET         0
-#define CFG_ENV_SIZE           1024
+#define CFG_ENV_SIZE           2048
 #endif
 /*-----------------------------------------------------------------------
  * I2C/EEPROM Configuration
index 58be7ca3ae707a059a9feac29f19dd3473c9e460..a0713cfdd39a55c26003f99f6fbb62f5520d90d0 100644 (file)
@@ -24,6 +24,6 @@
 #ifndef        __VERSION_H__
 #define        __VERSION_H__
 
-#define        PPCBOOT_VERSION "PPCBoot 1.0.3"
+#define        PPCBOOT_VERSION "PPCBoot 1.0.4"
 
 #endif /* __VERSION_H__ */