#!/bin/sh
# Copyright (c) 2007, Technologic Systems.
# All rights reserved.
#
# Attempts to NFS root to 192.168.0.1:/tsarm-nfsroot
# Change as needed, symlink to /linuxrc, and run "save" to use

export PATH=/bin:/sbin:/lbin:/mnt/root/bin:/mnt/root/sbin:/mnt/root/usr/bin:/mnt/root/usr/sbin:/mnt/root/usr/local/bin:/mnt/root/usr/local/sbin
export LD_LIBRARY_PATH=/lib:/usr/lib
export CONSOLE=/dev/ttyAM0

mount -t proc none /proc
mount -t sysfs none /sys
mount -t tmpfs none /dev
mdev -s
mkdir /dev/pts /dev/shm
mount -t devpts none /dev/pts
mount -t tmpfs none /dev/shm

setconsole $CONSOLE
stty -F $CONSOLE ospeed 115200 > /dev/null 2>&1
hostname ts7000
check-usb-update >/dev/null 2>&1 </dev/null & 

echo ">> Booting to NFS..." > $CONSOLE

(
  peekpoke 16 0x600ff0d6 0x3
  ifconfig eth0 192.168.0.50 up
  route add default gateway 192.168.0.1 eth0
  ifconfig lo 127.0.0.1 up
  route add -net 127.0.0.0 netmask 255.0.0.0 lo

  mount 192.168.0.1:/tsarm-nfsroot /mnt/root -o nolock

) > /dev/null 2>&1

if [ -e /mnt/root/notrootfs -o -e /mnt/root/fastboot -o ! -e /mnt/root/sbin/init ]; then

  if [ -e /mnt/root/fastboot ]; then
    echo ">> File 'fastboot' found. Booting to initrd instead..." > $CONSOLE
  else 
    echo ">> NFS failed. Booting to initrd..." > $CONSOLE
  fi

  (
    /sbin/telnetd
   
    insmod /ts7000_nand.ko 
    insmod /tssdcard.ko
    insmod /tsuart1.ko
    insmod /tsuart7350.ko
    mdev -s

    if [ -e /dev/tssdcarda4 -a -e /mnt/root/notrootfs ]; then
      mount -o ro /dev/tssdcarda4 /mnt/root
      fsck /dev/tssdcarda4
    fi
    if [ -e /dev/mtdblock3 -a -e /mnt/root/notrootfs ]; then
      mount -t yaffs2 -o ro /dev/mtdblock3 /mnt/root
    fi
  ) > /dev/null 2>&1 &

  (
    export BOOTTIME=`eptime`
    export ENV=/shinit
    exec /bin/sh -i < $CONSOLE > $CONSOLE 2>&1
  )

  wait
  killall busybox > /dev/null 2>&1
  echo ">> Booting Linux..." > $CONSOLE
  cd /mnt/root
  pivot_root . ./initrd
  ./bin/mount -n --move ./initrd/sys ./sys
  ./bin/mount -n --move ./initrd/proc ./proc
  exec ./usr/sbin/chroot . ./sbin/init < .$CONSOLE > .$CONSOLE 2>&1

else

  #verify if there is a kernel and issue bootload command. if not, then:
  
  cd /mnt/root
  pivot_root . ./initrd
  ./bin/mount -n --move ./initrd/sys ./sys
  ./bin/mount -n --move ./initrd/proc ./proc
  exec ./usr/sbin/chroot . ./sbin/init < .$CONSOLE > .$CONSOLE 2>&1

fi


