[Armadeus-commitlog] SF.net SVN: armadeus:[1007] trunk/buildroot/target/device/armadeus/apf9328/ ap
Brought to you by:
sszy
|
From: <jo...@us...> - 2009-01-09 15:44:54
|
Revision: 1007
http://armadeus.svn.sourceforge.net/armadeus/?rev=1007&view=rev
Author: jorasse
Date: 2009-01-09 15:44:50 +0000 (Fri, 09 Jan 2009)
Log Message:
-----------
[UBOOT] Fixed typo
Modified Paths:
--------------
trunk/buildroot/target/device/armadeus/apf9328/apf9328.h
Modified: trunk/buildroot/target/device/armadeus/apf9328/apf9328.h
===================================================================
--- trunk/buildroot/target/device/armadeus/apf9328/apf9328.h 2009-01-09 13:17:21 UTC (rev 1006)
+++ trunk/buildroot/target/device/armadeus/apf9328/apf9328.h 2009-01-09 15:44:50 UTC (rev 1007)
@@ -32,8 +32,8 @@
#ifndef __CONFIG_H
#define __CONFIG_H
-#define CONFIG_ENV_VERSION "3.4"
-#define CONFIG_IDENT_STRING " apf9328 patch 3.6"
+#define CONFIG_ENV_VERSION "3.5"
+#define CONFIG_IDENT_STRING " apf9328 patch 3.7"
#define CONFIG_ARM920T 1 /* this is an ARM920T CPU */
#define CONFIG_IMX 1 /* in a Motorola MC9328MXL Chip */
@@ -158,26 +158,30 @@
"run addmmcargs addipargs; bootm ${kernel_addr}\0" \
"firmware_autoload=0\0" \
"flash_uboot=protect off ${uboot_addr} +${uboot_len};" \
+ "echo Erasing FLASH;" \
"era ${uboot_addr} +${uboot_len};" \
"if cp.b ${fileaddr} ${uboot_addr} ${filesize};" \
"then protect on ${uboot_addr} +${uboot_len};" \
- "echo Flashing uboot succeed;" \
- "else echo Flashing uboot failed;" \
+ "echo Flashing of uboot succeed;" \
+ "else echo Flashing of uboot failed;" \
"fi; \0" \
- "flash_firmware=era ${firmware_addr} +${firmware_len};" \
+ "flash_firmware=echo Erasing FLASH;" \
+ "era ${firmware_addr} +${firmware_len};" \
"if cp.b ${fileaddr} ${firmware_addr} ${filesize} ;" \
- "then echo Flashing Firmware succeed;" \
- "else echo Flashing Firmware failed;" \
+ "then echo Flashing of Firmware succeed;" \
+ "else echo Flashing of Firmware failed;" \
"fi\0" \
- "flash_kernel=era ${kernel_addr} +${kernel_len};" \
+ "flash_kernel=echo Erasing FLASH;" \
+ "era ${kernel_addr} +${kernel_len};" \
"if cp.b ${fileaddr} ${kernel_addr} ${filesize} ;" \
- "then echo Flashing kernel succeed;" \
- "else echo Flashing kernel failed;" \
+ "then echo Flashing of kernel succeed;" \
+ "else echo Flashing of kernel failed;" \
"fi\0" \
- "flash_rootfs=era ${rootfs_addr} +${rootfs_len};" \
+ "flash_rootfs=echo Erasing FLASH;" \
+ "era ${rootfs_addr} +${rootfs_len};" \
"if cp.b ${fileaddr} ${rootfs_addr} ${filesize};" \
- "then echo Flashing rootfs succeed;" \
- "else echo Flashing rootfs failed;" \
+ "then echo Flashing of rootfs succeed;" \
+ "else echo Flashing of rootfs failed;" \
"fi\0" \
"flash_reset_env=protect off ${env_addr} +${env_len};" \
"era ${env_addr} +${env_len};" \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|