#!/bin/sh

. installink.sh

. ./!vda_ver

ROOTFS=/app/$NAME$VER

echo "*** Installing root fs files (stuff needed at early boot)"
echo
echo "This will install symlinks to ROOT FS $NAME$VER files"
echo "Note: this will crush any existing file in the way!"
echo -n "Press <Enter> to continue or Ctrl-C to exit: "; read junk

# symlink binaries
link_samename_strip	/bin		"$ROOTFS/bin/*"
link_samename_strip	/sbin		"$ROOTFS/sbin/*"

# symlink etc (?)
cp -dpsR		"$ROOTFS"/etc/*	/etc
