#!/bin/sh

# Remove the old u-boot path so we can replace it with a symlink
path="/usr/lib/u-boot-turing-rk3588/"
if [ -d ${path} ] && [ ! -L ${path} ]; then
    rm -rf ${path}
fi

exit 0
