#To get the latest version
git clone https://github.com/hisilicon/linaro-kernel.git -b estuary
#To get specified branch with specified tag
git checkout <branch name = estuary> <tag name = estuary-vx.x>

#To build it 
export ARCH=arm64
export CROSS_COMPILE=aarch64-linux-gnu-

cd linaro-kernel
make defconfig
make -j Image
make hisilicon/hip05-d02.dtb

#To get the target binary files
mkdir ~/target
cp arch/arm64/boot/Image ~/target/
cp arch/arm64/boot/dts/hisilicon/hip05-d02.dtb ~/target/ 

#more detail information, please refer to http://hisilicon.github.com
