Add hint to EADME that GNU "make" is needed (for NetBSD).
#########################################################################
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
======================
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).
- "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:
/* 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
/*-----------------------------------------------------------------------
/* 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
#ifndef __VERSION_H__
#define __VERSION_H__
-#define PPCBOOT_VERSION "PPCBoot 1.0.3"
+#define PPCBOOT_VERSION "PPCBoot 1.0.4"
#endif /* __VERSION_H__ */