You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd /mnt
wget -c https://releases.linaro.org/components/toolchain/binaries/latest-4/arm-eabi/gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi.tar.xz
xz -d gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi.tar.xz
tar -xvf gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi.tar
download official kernel-3.10.53 source code and copy config to .config
wget -c https://cdn.kernel.org/pub/linux/kernel/v3.x/linux-3.10.53.tar.gz
tar -xzvf linux-3.10.53.tar.gz
cd linux-3.10.53
cp /mnt/config .config
make ARCH=arm CROSS_COMPILE=/mnt/gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi/bin/arm-eabi- oldconfig
make ARCH=arm CROSS_COMPILE=/mnt/gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi/bin/arm-eabi-
compile getshell.c
make ARCH=arm KERNEL=/mnt/linux-3.10.53 CROSS_COMPILE=/mnt/gcc-linaro-4.9.4-2017.01-x86_64_arm-eabi/bin/arm-eabi-