From 857b9f558b1cdd2912ccc65f248c85d7c5acb372 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD Date: Tue, 12 Oct 2010 10:13:44 +0200 Subject: nhk8815: use defaultenv Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Sascha Hauer --- arch/arm/boards/nhk8815/env/bin/_update | 36 ------------------ arch/arm/boards/nhk8815/env/bin/boot | 38 ------------------- arch/arm/boards/nhk8815/env/bin/init | 28 -------------- .../boards/nhk8815/env/bin/update_barebox_xmodem | 19 ---------- arch/arm/boards/nhk8815/env/bin/update_kernel | 8 ---- arch/arm/boards/nhk8815/env/bin/update_root | 8 ---- arch/arm/boards/nhk8815/env/config | 44 +++++++++++++++------- 7 files changed, 30 insertions(+), 151 deletions(-) delete mode 100644 arch/arm/boards/nhk8815/env/bin/_update delete mode 100644 arch/arm/boards/nhk8815/env/bin/boot delete mode 100644 arch/arm/boards/nhk8815/env/bin/init delete mode 100644 arch/arm/boards/nhk8815/env/bin/update_barebox_xmodem delete mode 100644 arch/arm/boards/nhk8815/env/bin/update_kernel delete mode 100644 arch/arm/boards/nhk8815/env/bin/update_root (limited to 'arch/arm/boards/nhk8815') diff --git a/arch/arm/boards/nhk8815/env/bin/_update b/arch/arm/boards/nhk8815/env/bin/_update deleted file mode 100644 index fb7cbe8619..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/_update +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -if [ -z "$part" -o -z "$image" ]; then - echo "define \$part and \$image" - exit 1 -fi - -if [ \! -e "$part" ]; then - echo "Partition $part does not exist" - exit 1 -fi - -if [ $# = 1 ]; then - image=$1 -fi - -if [ x$ip = xdhcp ]; then - dhcp -fi - -ping $eth0.serverip -if [ $? -ne 0 ] ; then - echo "update aborted" - exit 1 -fi - -unprotect $part - -echo -echo "erasing partition $part" -erase $part - -echo -echo "flashing $image to $part" -echo -tftp $image $part diff --git a/arch/arm/boards/nhk8815/env/bin/boot b/arch/arm/boards/nhk8815/env/bin/boot deleted file mode 100644 index fd8d957db1..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/boot +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh - -. /env/config - -if [ x$1 = xflash ]; then - root=flash - kernel=flash -fi - -if [ x$1 = xnet ]; then - root=net - kernel=net -fi - -if [ x$ip = xdhcp ]; then - bootargs="$bootargs ip=dhcp" -else - bootargs="$bootargs ip=$eth0.ipaddr:$eth0.serverip:$eth0.gateway:$eth0.netmask:::" -fi - -if [ x$root = xflash ]; then - bootargs="$bootargs root=$rootpart rootfstype=jffs2" -else - bootargs="$bootargs root=/dev/nfs nfsroot=192.168.23.111:$nfsroot" -fi - -bootargs="$bootargs" - -if [ $kernel = net ]; then - if [ x$ip = xdhcp ]; then - dhcp - fi - tftp $uimage uImage - bootm uImage -else - bootm /dev/nor0.kernel -fi - diff --git a/arch/arm/boards/nhk8815/env/bin/init b/arch/arm/boards/nhk8815/env/bin/init deleted file mode 100644 index 5b45a70d47..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/init +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -PATH=/env/bin -export PATH - -. /env/config - -if [ -e /dev/nand0 ]; then - addpart /dev/nand0 $nand_parts - - # Uh, oh, hush first expands wildcards and then starts executing - # commands. What a bug! - source /env/bin/hush_hack -fi - -echo -echo -n "Hit any key to stop autoboot: " -timeout -a $autoboot_timeout -if [ $? != 0 ]; then - echo - echo "type update_kernel [] to update kernel into flash" - echo "type udate_root [] to update rootfs into flash" - echo "type update_barebox_xmodem nor to update barebox into flash" - echo - exit -fi - -boot diff --git a/arch/arm/boards/nhk8815/env/bin/update_barebox_xmodem b/arch/arm/boards/nhk8815/env/bin/update_barebox_xmodem deleted file mode 100644 index 40f4ad3dc0..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/update_barebox_xmodem +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -. /env/config - -part=/dev/nand0.barebox - -loadb -f barebox.bin -c - -unprotect $part -echo -echo "erasing partition $part" -erase $part - -echo -echo "flashing barebox.bin to $part" -echo -cp barebox.bin $part -crc32 -f barebox.bin -crc32 -f $part diff --git a/arch/arm/boards/nhk8815/env/bin/update_kernel b/arch/arm/boards/nhk8815/env/bin/update_kernel deleted file mode 100644 index db0f4c2678..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/update_kernel +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -. /env/config - -image=$uimage -part=/dev/nand0.kernel - -. /env/bin/_update $1 diff --git a/arch/arm/boards/nhk8815/env/bin/update_root b/arch/arm/boards/nhk8815/env/bin/update_root deleted file mode 100644 index 9530e847ef..0000000000 --- a/arch/arm/boards/nhk8815/env/bin/update_root +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -. /env/config - -image=$jffs2 -part=/dev/nand0.rootfs - -. /env/bin/_update $1 diff --git a/arch/arm/boards/nhk8815/env/config b/arch/arm/boards/nhk8815/env/config index 7e7fc456c3..e657a76f99 100644 --- a/arch/arm/boards/nhk8815/env/config +++ b/arch/arm/boards/nhk8815/env/config @@ -1,16 +1,33 @@ #!/bin/sh -# can be either 'net' or 'flash' -kernel=net -root=net - -# use 'dhcp' todo dhcp in uboot and in kernel +# use 'dhcp' to do dhcp in barebox and in kernel +# use 'none' if you want to skip kernel ip autoconfiguration ip=dhcp -# -# setup default ethernet address -# -#eth0.serverip=192.168.23.108 +# or set your networking parameters here +#eth0.ipaddr=a.b.c.d +#eth0.netmask=a.b.c.d +#eth0.gateway=a.b.c.d +#eth0.serverip=a.b.c.d + +# can be either 'net' or 'nand' +kernel_loc=net +# can be either 'net', 'nand' or 'initrd' +rootfs_loc=net + +# can be either 'jffs2' or 'ubifs' +rootfs_type=ubifs +rootfsimage=root.$rootfs_type + +# The image type of the kernel. Can be uimage, zimage, raw, or raw_lzo +#kernelimage_type=zimage +#kernelimage=zImage +kernelimage_type=uimage +kernelimage=uImage +#kernelimage_type=raw +#kernelimage=Image +#kernelimage_type=raw_lzo +#kernelimage=Image.lzo # Partition Size Start # XloaderTOC + X-Loader 256KB 0x00000000 @@ -22,11 +39,10 @@ ip=dhcp nand_parts="256k(xloader)ro,256k(meminit),2M(barebox),3M(kernel),22M(rootfs),100M(userfs),384k(free),128k(bareboxenv)" -uimage=uImage-nhk15 - -# use 'dhcp' to do dhcp in uboot and in kernel -ip=dhcp - autoboot_timeout=3 bootargs="root=/dev/ram0 console=ttyAMA1,115200n8 init=linuxrc" + +# set a fancy prompt (if support is compiled in) +PS1="\e[1;32mbarebox@\e[1;31m\h:\w\e[0m " + -- cgit v1.2.3