diff options
| author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-28 22:40:17 +0000 | 
|---|---|---|
| committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-03-28 22:40:17 +0000 | 
| commit | 678d38e811c0657540ec22bd00b457ae8ed841d7 (patch) | |
| tree | ccb4a04cee1a74adfcde78aea6f2d4c5d10891fe /package/uboot-ifxmips | |
| parent | ca2fbbd111d882ce1ed58aa9198893ef162169b7 (diff) | |
uboot-ifxmips: fix portability bug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20560 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/uboot-ifxmips')
| -rw-r--r-- | package/uboot-ifxmips/patches/001-portability.patch | 30 | 
1 files changed, 30 insertions, 0 deletions
diff --git a/package/uboot-ifxmips/patches/001-portability.patch b/package/uboot-ifxmips/patches/001-portability.patch new file mode 100644 index 000000000..02af987a4 --- /dev/null +++ b/package/uboot-ifxmips/patches/001-portability.patch @@ -0,0 +1,30 @@ +--- a/Makefile ++++ b/Makefile +@@ -275,10 +275,10 @@ $(U_BOOT_NAND):	$(NAND_SPL) $(obj)u-boot + 		cat nand_spl/u-boot-spl-16k.bin $(obj)u-boot.bin > $(obj)u-boot-nand.bin +  + version: +-		@echo -n "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \ +-		echo -n "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \ +-		echo -n $(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \ +-			 $(TOPDIR)) >> $(VERSION_FILE); \ ++		@printf "#define U_BOOT_VERSION \"U-Boot " > $(VERSION_FILE); \ ++		printf "$(U_BOOT_VERSION)" >> $(VERSION_FILE); \ ++		printf "$(shell $(CONFIG_SHELL) $(TOPDIR)/tools/setlocalversion \ ++			 $(TOPDIR))" >> $(VERSION_FILE); \ + 		echo "\"" >> $(VERSION_FILE) +  + gdbtools: +@@ -1593,10 +1593,10 @@ MPC8540EVAL_66_slave_config:      unconf + 	@mkdir -p $(obj)include + 	@echo "" >$(obj)include/config.h ; \ + 	if [ "$(findstring _33_,$@)" ] ; then \ +-		echo -n "... 33 MHz PCI" ; \ ++		printf "... 33 MHz PCI" ; \ + 	else \ + 		echo "#define CONFIG_SYSCLK_66M" >>$(obj)include/config.h ; \ +-		echo -n "... 66 MHz PCI" ; \ ++		printf "... 66 MHz PCI" ; \ + 	fi ; \ + 	if [ "$(findstring _slave_,$@)" ] ; then \ + 		echo "#define CONFIG_PCI_SLAVE" >>$(obj)include/config.h ; \  | 
