科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道uClinux中添加用户应用程序的详细方法

uClinux中添加用户应用程序的详细方法

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

uClinux中添加用户应用程序的详细方法

作者:sixth 来源:赛迪网 2007年10月10日

关键字: 方法 ucLinux Linux 操作系统

  • 评论
  • 分享微博
  • 分享邮件
 

1. uClinux-dist/user/Makefile

dir_$(CONFIG_USER_HELLO_WORLD)

+= hello

2. uClinux-dist/config/Configure.help

CONFIG_USER_HELLO_WORLD

A simple hello world program

3. uClinux-dist/config/config.in

找到下面两行

mainmenu_option next_comment

comment 'Miscellaneous Applications'

添加如下一行

bool 'hello'

CONFIG_USER_HELLO_WORLD

4.1.uClinux-dist/user/hello/Makefile

EXEC = hello
OBJS = hello.o

all: $(EXEC)

$(EXEC): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)

romfs:
$(ROMFSINST)    /bin/$(EXEC)

clean:
-rm -f $(EXEC) *.elf *.gdb *.o

4.2.uClinux-dist/user/hello/hello.c

#include <stdio.h>

int main()
{
printf("Hello, World\n");
return 0;
}

5. 将用户程序编译进romfs

# cd ~/uClinux-dist
# make menuconfig
# make dep
# make romfs

参考资料:

uClinux-dist/Documentation/Adding-User-Apps-HOWTO

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章