## 第一部分: 基础信息 name: lwip # <必选项> 包名称 (符合C语言变量命名规则),长度少于等于64字节 version: master # <必选项> 组件版本号 description: A Lightweight TCP/IP stack # <必选项> 建议至少20字以上 type: common # <必选项> 组件类型,为:solution, chip, board, common, sdk tag: 核心模块 # <可选项> 组件分类,缺省值: '' keywords: # <可选项> 标签,会影响到组件被搜索的效果,合理的标签很重要 - base license: BSD # <可选项> 源代码的许可证,要确保所有代码、文件的许可证不冲突。如:MIT,Apache license v2.0,BSD ## 第二部分:依赖信息 # 指定该组件依赖的组件及版本,版本支持条件比较,支持:>=v1.0, >v1.0, ==v1.0, <=v1.0, 该组件依赖其他的组件,合理的依赖才能保证组件能编译、使用 # - minilibc: v7.2.0 # - aos: >=v7.2.0 depends: # - minilibc: master ## 第四部分:编译连接信息 # build_config: # <可选项> 编译配置项 # include: # <可选项> 编译时,影响编译器的-I 参数 ,全局有效 # - src # include 只能是该软件包下的目录,不能使用外部目录 # internal_include: # <可选项> 编译时,影响编译器的-I 参数 ,组件内有效 # - include # cflag: '' # <可选项> C 编译器所需要要的编译参数 # cxxflag: '' # <可选项> CXX 编译器所需要要的编译参数 # asmflag: '' # <可选项> 汇编器所需要要参数 # define: # <可选项> 宏定义, 增加编译器的-D 选项,如: # XXX: 1 # -DXXX=1 # AAA: 1 # -DAAA # STR: "abc" # -DSTR="abc" # libs: # 该组件中支持的二进制静态库,如:libxxx.a, libyyy.a # - xxx # -lxxx # - yyy # -lyyy # libpath: # 指定静态库所在的路径(相对于该组件路径) # - libs # -Llibs build_config: cflag: '-Wno-address -Wno-unused-but-set-variable' include: - /include - /include/posix - /port/include ? # source_file: # <可选项> 指定参与编译的源代码文件,支持通配符,采用相对路径 # - src/*.c # 例:组件 src 目录下所有的扩展名为 c 的源代码文件 source_file: - /core/*.c - /core/ipv4/*.c - /core/ipv6/*.c - /api/*.c - /netif/*.c - /netif/ppp/*.c - /netif/ppp/polarssl/*.c ? - /apps/arp/*.c ? - /apps/dhcpd/*.c - /apps/dns/*.c ? - /apps/httpd/fs.c ? - /apps/httpd/httpd.c ? - /apps/ifconfig/*.c ? - /apps/iperf/iperf_aos_wrapper.c ? - /apps/iperf/iperf_cli.c ? - /apps/iperf/iperf_task.c ? # - /apps/lsfd/*.c ? - /apps/mdns/*.c - /apps/netbiosns/*.c - /apps/ping/*.c ? - /apps/sendfile/*.c ? - /apps/snmp/*.c ? - /apps/telnetd/*.c ? - /apps/tftp/*.c - /apps/lwiperf/*.c ? - /apps/sntp/*.c ? - /apps/mqtt/*.c ? - /apps/ping/*.c - /port/*.c ## 第五部分:配置信息 # def_config: # 组件的可配置项 # CONFIG_DEBUG: y # CONFIG_PARAM_NOT_CHECK: y # CONFIG_CLI: y def_config: CONFIG_AOS_LWIP: 1 CONFIG_TCPIP: 1 WITH_LWIP_PKTPRINT: 1 IPERF_ENABLED: 1 ## 第六部分:安装信息 # install: # - dest: include/ # 安装的目的路径 dest是相当路径,通常是相对于YoC SDK 安装目录 # source: # 安装源列表 # - src/*.h # 支持通配符,相对路径 install: - dest: "include/arch" source: - "include/arch/*.h" - dest: "include/arpa" source: - "include/arpa/*.h" - dest: "include/lwip" source: - "include/lwip/*.h" - dest: "include/lwip/apps" source: - "include/lwip/apps/*.h" - dest: "include/lwip/priv" source: - "include/lwip/priv/*.h" - dest: "include/lwip/prot" source: - "include/lwip/prot/*.h" - dest: "include/netif" source: - "include/netif/*.h" - dest: "include/netif/ppp" source: - "include/netif/ppp/*.h" - dest: "include/posix" source: - "include/posix/*.h" - dest: "include/sys" source: - "include/sys/*.h" # install: # - dest: include # source: # - "include/lwip/netdb.h" # - dest: include/arpa # source: # - include/arpa/inet.h # - dest: include/lwip # source: # - "include/lwip/*.h" # - dest: include/lwip/sys # source: # - "posix/*sys/*.h" # - dest: include/lwip # source: # - "posix/*.h" # - dest: include/lwip/apps # source: # - "include/lwip/apps/*.h" # - dest: include/lwip/priv # source: # - "include/lwip/priv/*.h" # - dest: include/lwip/prot # source: # - "include/lwip/prot/*.h" # - dest: include/arch # source: # - "port/include/arch/*.h" # - dest: include/netif # source: # - "include/netif/*.h" ## 第七部分:导出部分 # export: # - dest: "/generated/data" # 安装的目的路径 dest是相当路径 # source: # 安装源列表 # - "bootimgs/boot" # - "bootimgs/tee" # - "bootimgs/mtb" # - "configs/config.yaml"