improve compile docs

This commit is contained in:
bol-van 2024-11-16 16:43:26 +03:00
parent ee44aebcc4
commit 69007b5098

View File

@ -3,19 +3,33 @@ How to compile native programs for use in openwrt
1) Download latest SDK for your platform from https://downloads.openwrt.org 1) Download latest SDK for your platform from https://downloads.openwrt.org
curl -o - https://downloads.openwrt.org/releases/23.05.5/targets/x86/64/openwrt-sdk-23.05.5-x86-64_gcc-12.3.0_musl.Linux-x86_64.tar.xz | tar -Jxvf - examples :
cd openwrt-sdk-23.05.5-x86-64_gcc-12.3.0_musl.Linux-x86_64
2) ./scripts/feeds update -a curl -o - https://downloads.openwrt.org/releases/23.05.5/targets/x86/64/openwrt-sdk-23.05.5-x86-64_gcc-12.3.0_musl.Linux-x86_64.tar.xz | tar -Jxvf -
./scripts/feeds install -a cd openwrt-sdk-23.05.5-x86-64_gcc-12.3.0_musl.Linux-x86_64
3) cp -R /opt/zapret/docs/compile/openwrt/. . curl -o - https://downloads.openwrt.org/snapshots/targets/x86/64/openwrt-sdk-x86-64_gcc-13.3.0_musl.Linux-x86_64.tar.zst | tar --zstd -xvf -
cp -R /opt/zapret/tpws package/zapret/tpws cd openwrt-sdk-x86-64_gcc-13.3.0_musl.Linux-x86_64
cp -R /opt/zapret/nfq package/zapret/nfqws
cp -R /opt/zapret/mdig package/zapret/mdig
cp -R /opt/zapret/ip2net package/zapret/ip2net
4) make package/{tpws,nfqws,mdig,ip2net}/compile 2) Install required libs
5) find bin -name tpws*.ipk ./scripts/feeds update base packages
#take your tpws*.ipk , nfqws*.ipk , ip2net*.ipk, mdig*.ipk from there ./scripts/feeds install libnetfilter-queue zlib libcap
3) Prepare openwrt package definitions
sudo make -C /opt/zapret clean
cp -R /opt/zapret/docs/compile/openwrt/. .
cp -R /opt/zapret/tpws package/zapret/tpws
cp -R /opt/zapret/nfq package/zapret/nfqws
cp -R /opt/zapret/mdig package/zapret/mdig
cp -R /opt/zapret/ip2net package/zapret/ip2net
4) Compile
make package/{tpws,nfqws,mdig,ip2net}/compile
5) Get result
ls -l bin/packages/*/base
# take your ipk or apk from there