From: wdenk Date: Mon, 23 Jul 2001 09:35:41 +0000 (+0000) Subject: Use whole EEPROM for environment. X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=64ab1dd1c5b4fb8b166b7e6c77c9e527b30ec972;p=users%2Frw%2Fppcboot.git Use whole EEPROM for environment. Add hint to EADME that GNU "make" is needed (for NetBSD). --- diff --git a/Makefile b/Makefile index 9b560e7..85c1928 100644 --- 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 800760d..34b27db 100644 --- 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: diff --git a/include/config_TQM8260.h b/include/config_TQM8260.h index d60ddcd..c12fe21 100644 --- a/include/config_TQM8260.h +++ b/include/config_TQM8260.h @@ -187,7 +187,7 @@ /* 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 /*----------------------------------------------------------------------- diff --git a/include/config_lwmon.h b/include/config_lwmon.h index 1ed7967..5f2eafb 100644 --- a/include/config_lwmon.h +++ b/include/config_lwmon.h @@ -183,7 +183,7 @@ /* 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 diff --git a/include/version.h b/include/version.h index 58be7ca..a0713cf 100644 --- a/include/version.h +++ b/include/version.h @@ -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__ */