linux qnx 开发平台,QNX学习笔记之QNX Momentics IDE开发工具使用笔记

使用tftp,串口连接Target,下载内核

1.uboot的使用

1) 采用串口,波特率为115200, 采用QNX M IDE默认的设置,按任意键,即可进入uboot

2) 常用的命令有:

setenv serverip 192.168.0.1;设置服务器tftp地址

setenv ipaddr   192.168.0.2;设置本地tftp地址

tftp 20000 file; 通过tftp下载内核到0x20000 RAM 地址

go 20000; 运行指定位置未压缩的程序

2.QNX M IDE 的TFTP服务器启动

打开TFTP的view, 在linux系统中启动报错, 为linux/proxy:cannot execute

解决方法如下:

In the IDE on Linux, if you aren"t logged in as root, and you try to start the tftp server and

bind to port 67 (which requires root privileges), the IDE now displays an error message. If you want

to run tftp as a non-root user, change the port (e.g. to 6700), or make the proxy program set its

user ID to root. For example:

su chown root eclipse/plugins/com.qnx.tools.ide.tftp_VERSION/os/linux/proxy

chmod a+sx eclipse/plugins/com.qnx.tools.ide.tftp_VERSION/os/li

你可能感兴趣的:(linux,qnx,开发平台)