码迷,mamicode.com
首页 > 移动开发 > 详细

如何让A20,android开机自动启动C程序【转】

时间:2018-02-07 17:09:52      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:targe   收藏   运行   lin   man   int   data   增加   csdn   

本文转载自:http://blog.csdn.net/u011258134/article/details/50749174

如何让A20,android开机自动启动C程序

技术分享图片 分类:

///  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] view plain copy
 
 技术分享图片技术分享图片
  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] view plain copy
 
  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

如何让A20,android开机自动启动C程序【转】

标签:targe   收藏   运行   lin   man   int   data   增加   csdn   

原文地址:https://www.cnblogs.com/zzb-Dream-90Time/p/8426725.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!