From 64290a8df006a42afc118fef18e0048e97d5535a Mon Sep 17 00:00:00 2001 From: Dmitriy Beykun Date: Sun, 12 Dec 2010 00:30:03 +0300 Subject: [PATCH] Added typical XZ0032 linux flash script. --- script/flash_xz0032_linux.scr | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 script/flash_xz0032_linux.scr diff --git a/script/flash_xz0032_linux.scr b/script/flash_xz0032_linux.scr new file mode 100644 index 0000000..3c858ef --- /dev/null +++ b/script/flash_xz0032_linux.scr @@ -0,0 +1,34 @@ +#11.12.2010 --rzk +# orig from http://pastie.org/1368585 +# fixes by whitequark + +echo "---- Linux kernel+loader+rootfs flashing script ----" +echo "Including initial config for 4750 XZ0032 board" + +source config/boot.cfg + +echo "jzboot successfully configured for XZ0032" + +echo "Configuring for bootloader IO" +source script/ecc_boot.scr +echo "Configured for bootloader IO" + +echo "Erasing all flash" +nerase 0 0 4096 +echo "Erased all flash" +echo "Flashing loader" +nprogram 0 0 u-boot-nand.bin +echo "Flashed loader" +echo "Flashing kernel" +nprogram 0 2048 uImage +echo "Flashed kernel" + +echo "Configuring for standard IO" +source script/ecc_normal.scr +echo "Configured for standard IO" + +echo "Flashing rootfs" +nprogram 0 4096 rootfs.yaffs2 +echo "Flashed rootfs" + +echo "---- All done ----"