Chinaunix首页 | 论坛 | 博客
  • 博客访问: 406600
  • 博文数量: 77
  • 博客积分: 798
  • 博客等级: 军士长
  • 技术积分: 1238
  • 用 户 组: 普通用户
  • 注册时间: 2012-04-01 22:33
文章分类

全部博文(77)

文章存档

2015年(1)

2014年(7)

2013年(38)

2012年(31)

分类: Android平台

2014-07-21 08:39:37

 #0: HISI-AIAO
Warning: unable to open an initial console.
Freeing unused kernel memory: 1020K (c0e40000 - c0f3f000)
mmc0: BKOPS_EN bit is not set
mmc0: new high speed MMC card at address 0001
mmcblk0: mmc0:0001 MMC04G 3.57 GiB 
mmcblk0boot0: mmc0:0001 MMC04G partition 1 2.00 MiB
mmcblk0boot1: mmc0:0001 MMC04G partition 2 2.00 MiB
 mmcblk0: p1(boot) p2(bootargs) p3(hwconfig) p4(loader) p5(recovery) p6(caverify) p7(logo) p8(ipdata) p9(cadata) p10(ldflage) p11(baseparam) p12(fastplay) p13(misc) p14(blackbox) p15(factory) p16(kernel) p17(system) p18(userdata) p19(cache) p20(exstorage)
 mmcblk0boot1: unknown partition table
 mmcblk0boot0: unknown partition table
init: skipping insecure file '/default.prop'
init: skipping insecure file '/init.environ.rc'
init: could not import file '/init.environ.rc' from '/init.rc'
init (1): /proc/1/oom_adj is deprecated, please use /proc/1/oom_score_adj instead.
init: /dev/hw_random not found
init: cannot open '/initlogo.rle'
EXT4-fs (mmcblk0p17): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (mmcblk0p18): recovery complete
EXT4-fs (mmcblk0p18): mounted filesystem with ordered data mode. Opts: (null)
EXT4-fs (mmcblk0p19): recovery complete
EXT4-fs (mmcblk0p19): mounted filesystem with ordered data mode. Opts: (null)
init: /dev/hw_random not found
healthd: Could not open /sys/class/power_supply
init: cannot find '/system/bin/rild', disabling 'ril-daemon'
init: cannot find '/system/bin/dbus-daemon', disabling 'dbus'
healthd: No charger supplies found
healthd: BatteryStatusPath not found
init: cannot find '/system/etc/install-recovery.sh', disabling 'flash_recovery'
healthd: BatteryHealthPath not found
healthd: BatteryPresentPath not found
healthd: BatteryCapacityPath not found
healthd: BatteryVoltagePath not found
healthd: BatteryTemperaturePath not found
healthd: BatteryTechnologyPath not found
binder: 1545:1545 transaction failed 29189, size 0-0
init: cannot find '/system/bin/dtvserver', disabling 'dtvserver'
init: cannot find '/system/bin/hidns-sd', disabling 'hidns-sd'
init: property 'sys.powerctl' doesn't exist while expanding '${sys.powerctl}'
init: powerctl: cannot expand '${sys.powerctl}'
init: property 'sys.sysctl.extra_free_kbytes' doesn't exist while expanding '${sys.sysctl.extra_free_kbytes}'
init: cannot expand '${sys.sysctl.extra_free_kbytes}' while writing to '/proc/sys/vm/extra_free_kbytes'
init: property 'persist.sys.usb.config' doesn't exist while expanding '${persist.sys.usb.config}'
init: cannot expand '${persist.sys.usb.config}' while assigning to 'sys.usb.config'
init: untracked pid 1889 exited
init: untracked pid 1927 exited
init: untracked pid 1980 exited
init: untracked pid 2019 exited
init: untracked pid 2069 exited
init: untracked pid 2114 exited

解决方法 , 有3个 
1.注掉  init: skipping insecure file '/default.prop'  权限判断
/system/core/init/init.c 里面的权限判断

2. 保证 andriod 源码里面的 *.rc *.prop  权限 为 644
find -name "*.rc"  -exce chmod 644 {};\

find -name "*.prop"  -exce chmod 644 {};\

3. 重新tar 掉 源码 , 不动源码里 目录以及文件权限 
umask -p 0022

重新build  ,烧入  ok 





阅读(10352) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

abel_peng2014-10-22 11:05:25

楼主 按照你的方法 做了 ,init: skipping insecure file '/default.prop'
init: skipping insecure file '/init.environ.rc'
的提示没了 ,但Warning: unable to open an initial console.
和其他的 警告提示都还在  ,也进不了系统,楼主怎么解决的呢