#!/bin/sh

# environment: DEST: root of destination, else /

root=${DEST-/}

echo Installing into $root ...

/bin/cp sharedroot ${root}/etc/rc.d
/bin/cp ${root}/dev/MAKEDEV ${root}/dev/MAKEDEV.local ${root}/sbin/
/bin/mkdir ${root}/swap

echo +++ do not forget to set the variables +++
echo sharedroot_prefix_root and sharedroot_prefix_swap
exit 0
