From fc0b3f6f766cce5d1d474d84618c057fc763122d Mon Sep 17 00:00:00 2001 From: wangyu- Date: Sun, 10 Sep 2017 00:04:56 -0700 Subject: [PATCH] Created how to choose a binary for your device (markdown) --- how-to-choose-a-binary-for-your-device.md | 41 +++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 how-to-choose-a-binary-for-your-device.md diff --git a/how-to-choose-a-binary-for-your-device.md b/how-to-choose-a-binary-for-your-device.md new file mode 100644 index 0000000..77abb70 --- /dev/null +++ b/how-to-choose-a-binary-for-your-device.md @@ -0,0 +1,41 @@ +# Getting Started +### Desktop Linux + +For 64bit system, use udp2raw_amd64 + +For 32bit system, use udp2raw_x86 + +### Android,Raspberry Pi,Router with ARM CPU (armv6 and above) + +use udp2raw_arm + +### Router with MIPS CPU (mips24kc and above) + +For big-endian system,use udp2raw_mips24kc_be + +For little-endian system,use udp2raw_mips24kc_le + +### Other Device +You have to build by yourself.Check: + +https://github.com/wangyu-/udp2raw-tunnel/blob/master/doc/build_guide.md + + +# Advanced +After you make sure udp2raw works on your device with the binary you choosed in `Getting Started` section,you can try a version with AES acceleration for better performance. + +### Desktop Linux + +For 64bit system, try udp2raw_amd64_hw_aes + +For 32bit system, try udp2raw_x86_asm_aes + +### Android,Raspberry Pi,Router with ARM CPU (armv6 and above) + +try udp2raw_arm_asm_eas + +### Router with MIPS CPU (mips24kc and above) + +For big-endian system,try udp2raw_mips24kc_be_asm_aes + +For little-endian system,try udp2raw_mips24kc_le_asm_aes \ No newline at end of file