copy
来自「NXPl788上lwip的无操作系统移植,基于Embest开发板」· 代码 · 共 17 行
TXT
17 行
#!/bin/sh
#make an ecos epk from CVS lwIP
CURRENT=$EPK/net/lwip_tcpip/current
mkdir -p `dirname $CURRENT/$2`
#prepend eCos license text to all files but the ones
#in the ppp directory: those have the advertising clause
#type of BSD license which is not compatible with GPL
#or that's what I'be been told and IANAL
if [ "`dirname $1`" != "src/netif/ppp" ]; then
#cat header $LWIP_CVS/$1 > $CURRENT/$2
cp -f $LWIP_CVS/$1 $CURRENT/$2
else
cp -f $LWIP_CVS/$1 $CURRENT/$2
fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?