Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyeongseok Oh <hseok82.oh@samsung.com>2017-03-06 08:46:50 +0300
committerHyeongseok Oh <hseok82.oh@samsung.com>2017-03-06 08:46:50 +0300
commit0d446eed9439130263174a11fa0fe29ea3e41048 (patch)
tree9623626ee5cc2113bc8302080cba4d25e2e01b30 /cross/build-rootfs.sh
parent4d0fb2860cdf9775f43b2a77be82fe77270cfb04 (diff)
Fix rootfs to sync with coreclr
Fix rootfs script to build libcoreclrtraceptprovider.so in coreclr
Diffstat (limited to 'cross/build-rootfs.sh')
-rwxr-xr-xcross/build-rootfs.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/cross/build-rootfs.sh b/cross/build-rootfs.sh
index 4c409f9212..37db56779d 100755
--- a/cross/build-rootfs.sh
+++ b/cross/build-rootfs.sh
@@ -130,6 +130,12 @@ if [[ -n $__LinuxCodeName ]]; then
if [ $__SkipUnmount == 0 ]; then
umount $__RootfsDir/*
fi
+
+ if [[ "$__BuildArch" == "arm" && "$__LinuxCodeName" == "trusty" ]]; then
+ pushd $__RootfsDir
+ patch -p1 < $__CrossDir/$__BuildArch/trusty.patch
+ popd
+ fi
elif [ "$__Tizen" == "tizen" ]; then
ROOTFS_DIR=$__RootfsDir $__CrossDir/$__BuildArch/tizen-build-rootfs.sh
else