#!/bin/sh
#
# dcp2000/base-files package pre installation script
#

UINSTLIST="./rootfs/tmp/uninstall.list"
# Uninstall old and unused files
while read _file ; do 
#	echo "DEBUG: delete ${_file}"
	( test -e "${_file}" || test -h "${_file}" ) && rm -rf "${_file}"
done < "${UINSTLIST}"

rm -rf /doremi/sbin/iUSBSMART

exit 0
