说明

ntfs-3g 能使linux使用ntfs格式的硬盘

编译

下载

wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2014.2.15.tgz
tar -xvf ntfs-3g_ntfsprogs-2014.2.15.tgz

交叉编译脚本

#!/bin/sh
set -e

PATH_INSTALL=$(pwd)/install
./configure CC=arm-hisiv400-linux-gcc \
--host=aarch64-himix100-linux \
--prefix=$PATH_INSTALL \
--exec-prefix=$PATH_INSTALL \
--host=arm-linux

sudo make -j12
sudo make install