sylixos初接触

http://wiki.sylixos.com/index.php/SylixOS入门指南
http://wiki.sylixos.com/index.php/Linux环境开发指南

https://blog.csdn.net/kulala082/article/details/76457574

https://github.com/ruier/sylix_image

写在前面:
由于目前sylios的开发依赖于它们自己的ide,ide可生成makefile编译出目标机所需的产物,如果不借助ide,按照wiki上去编译bsp或者app,并不能生成你想要的.还需自行手动修改makefile.

2440目标机加载:

1设置网络
setenv ipaddr 192.168.100.230
setenv serverip 192.168.100.106
setenv gatewayip 192.168.100.1
saveenv

2加载
tftp 30000000 bspmini2440.bin
go 30000000

3os启动后设置ip
ifconfig en1 inet 192.168.100.230
ifconfig en1 netmask 255.255.255.0
ifconfig en1 gateway 192.168.100.1

原文地址:https://www.cnblogs.com/retry/p/13060763.html