/usr/src/openswan-2.6.38/packaging/utils/kerngit2osw.sh is in openswan-modules-dkms 1:2.6.38-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/bin/sh
klips_git=/mara1/git/klips
openswan_git=`pwd`
(cd $klips_git && find net/ipsec include/openswan* include/pfkey* -type f | cpio -pdu $openswan_git/linux )
cd $openswan_git/linux/net/ipsec
if [ -f Makefile ]; then mv Makefile Makefile.fs2_6; fi
for dir in des aes alg
do
if [ -f $dir/Makefile ]; then mv $dir/Makefile $dir/Makefile.fs2_6; fi
done
rm version.c Makefile.ver
|