博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何让A20,android开机自动启动C程序【转】
阅读量:6172 次
发布时间:2019-06-21

本文共 1700 字,大约阅读时间需要 5 分钟。

本文转载自:

 分类:
C语言学习(10) 
X

///  xinit  增加:  xinit    /usr/local/bin/xfreerdp  192.168.1.196

 

 

1,修改 android/device/    init.sun7i.rc

 

........(略)

#add by jiangdou

    chmod 777 /system/bin/hello
    chmod 777 /system/bin/dou.sh
service init-setup /system/bin/dou.sh
    class main
    user root
    group root
    oneshot

........(略)

 

2,在device/softwinner/sugar-cubieboard2/新建dou.sh  文件,内容:

#! /system/bin/sh

#hello是C编译的文件,是静态编译,,放在system/bin/
/system/bin/hello     

#or

hello

echo "jiangdou"

exit

 

3,vi device/softwinner/sugar-cubieboard2/sugar_cubieboard2.mk   ///目的是执行make -j48  复制到out/target/product/sugar-cubieboard2/system/bin/

 

........(略)

#add by jiangdou 

PRODUCT_COPY_FILES += \
        device/softwinner/sugar-cubieboard2/hello:system/bin/hello \
        device/softwinner/sugar-cubieboard2/dou.sh:system/bin/dou.sh

........(略)

 

 

4,开机,,效果

root@android:/ # ps | busybox grep hello

root      1409  1     652    108   c006bf0c 0001090c S /system/bin/hello
root      1411  1     652    108   c006bf0c 0001090c S hello
root@android:/ # 

 

证明开机自动运行了

 

 

5, C代码内容,,,,编译$  arm-linux-androideabi-gcc -o  hello hello.c  -static

 

[html] 
 
 
 
  1. #include<stdio.h>  
  2. #include <signal.h>  
  3. int main(void)  
  4. {  
  5.   
  6.    int i;  
  7.     signal(SIGCHLD, SIG_IGN);  
  8.   
  9.     daemon(0, 0);//fork 强制后台运行!    daemon祥见下面的文章
  10.    // for(i = 0; i 10; i++)  
  11.    while(1)  
  12.     {  
  13.      sleep(1);  
  14.      printf("hello......by jiangdou\n");  
  15.     }  
  16.  return 0;  
  17. }  
[html] 
 
 
  1. #include<stdio.h>  
  2. #include <signal.h>  
  3. int main(void)  
  4. {  
  5.   
  6.    int i;  
  7.     signal(SIGCHLD, SIG_IGN);  
  8.   
  9.     daemon(0, 0);//fork 强制后台运行!  
  10.    // for(i = 0; i 10; i++)  
  11.    while(1)  
  12.     {  
  13.      sleep(1);  
  14.      printf("hello......by jiangdou\n");  
  15.     }  
  16.  return 0;  
  17. }  

 

 

adb  push xxx   /system  ---->ERROR    "Readonly-----file   system"  

 

adb  shell   && mount -o remount -o rw /system

 

原帖:http://blog.csdn.net/jiangdou88/article/details/42169263#comments

你可能感兴趣的文章
谷物大脑
查看>>
访问控制-禁止php解析、user_agent,PHP相关配置
查看>>
AgileEAS.NET之系统架构
查看>>
python3.5里的正则表达式
查看>>
Exchange server 2013 SP1 客户端会议室邮箱自动回复延迟
查看>>
nginx反向代理缓存服务器构建
查看>>
RHEL6 搭建LVS/DR 负载均衡集群 案例
查看>>
以太坊·Rinkeby 测试网络
查看>>
字符串按规则排序算法
查看>>
MPLS + BGP高级特性
查看>>
plist文件读写操作
查看>>
oracle resetlogs和noresetlogs 创建控制文件区别
查看>>
2013-7-17学习作业练习
查看>>
ZAM 3D入门教程(4):Extrusion编辑器
查看>>
《深入实践Spring Boot》一第2章 在Spring Boot中使用数据库2.1 使用MySQL
查看>>
C++语言基础 例程 字符串类
查看>>
[Docker系列·7] 使用nsenter调试Docker镜像
查看>>
[Docker系列·11] 搭建ZooKeeper服务器
查看>>
PostgreSQL 与 12306 抢火车票的思考
查看>>
堆排序
查看>>