#!/bin/sh

# lh_includechroot

# Copy external directory into the chroot
if [ -d "${LIVE_INCLUDE_CHROOT}" ]
then
	cd "${LIVE_INCLUDE_CHROOT}"
	find . | cpio -pumd "${LIVE_CHROOT}"
	cd "${OLDPWD}"
fi
