Provide SRM 1.2 kernel packages, extracted from Synology GPL Source archives.
original archives are about 1.7 GB and downloaded from:
https://sourceforge.net/projects/dsgpl/files/Synology%20Router%20GPL%20Source/7742branch/
The archives of the required kernel sources are about 90 MB.
Despite we have kernel sources for dakota and northstarplus archs we are lacking the related toolchains.
The kernel files contain a part (the linux-* folder) of the gpl source archives and are created like this:
for northstarplus addional package for linux 3.6.x is provided
for arch in dakota ipq806x northstarplus; do
echo "Create ${arch}-linux-4.4.x.txz"
mkdir -p synogpl-7742-${arch}
cd synogpl-7742-${arch}
sudo tar -xjpf ../synogpl-7742-${arch}.tbz
cd source
tar -cJf ../../${arch}-linux-4.4.x.txz linux-4.4.x
cd ../..
done