lwip-contrib-mac/ports/old/ecos/mkepk

29 lines
550 B
Plaintext
Raw Normal View History

2003-02-28 14:29:13 +00:00
#!/bin/sh
#make an ecos epk from CVS lwIP
2003-05-05 14:56:27 +00:00
if test $EPK"" == "" ; then
2003-02-28 14:29:13 +00:00
echo you must set the EPK environment var to the dir you want the EPK in
exit;
fi
2003-05-05 14:56:27 +00:00
if test $LWIP_CVS"" == "" ; then
2003-02-28 14:29:13 +00:00
echo you must set the LWIP_CVS environment var to the dir you checked out the lwip module
LWIP_CVS=../../../lwip;
exit;
fi
EPK=$EPK/lwip_epk
2003-02-28 14:29:13 +00:00
#cleanup
rm -Rf $EPK
2003-02-28 14:29:13 +00:00
#copy files from CVS
xargs -n 2 ./copy < files
#copy ecos specific files
2003-03-05 14:20:20 +00:00
cd ecos && find . ! -path '*CVS*' -a -type f -exec cp --parents {} $EPK \;
2003-02-28 14:29:13 +00:00
#make epk
cd $EPK && tar czf lwip.epk *