《Android嵌入式系统软件开发.pptVIP

  • 4
  • 0
  • 约6.89千字
  • 约 23页
  • 2016-12-28 发布于北京
  • 举报
Android嵌入式系统软件开发 Android Embedded System Software Development 周 庆 国 (zhouqg@lzu.edu.cn) 兰 州 大 学 * Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. * 6.2 6.3 第六章BootChart、Dalvik及Bootloader 6.1 BootChart Dalvik Bootloader Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. * * 6.1 Bootchart bootchart本是一个开源工具,用可视化的方式对GUN/LINUX的开机启动过程进行性能分析,包括资源的使用,如CPU,磁盘等,各进程的执行时间等信息。 Ubuntu系统上执行的命令 sudo aptitude install bootchart 编译支持Bootchart的INIT初始化程序 (1)与其他嵌入式Linux系统一样,INIT是Androlid系统的第一个用户空间程序,它位于Android文件系统的根目录(”/”)中。INIT被Linux内核调用执行,完成一些初始化步骤和启动所有的其他用户空间程序的工作。 (2)在Android中,INIT读取并执行/init.rc和/init.machine_name.rc初始化脚本配置文件里的相关命令来完成相应的初始化工作。 (3)INIT可以编译成支持或不支持Bootchart数据收集的,当然默认是不支持该功能的。为了在Android中使用Bootchart数据收集功能,必须确保Bootchart支持已经编译进INIT程序中。 这里提供了两种方式来重新编译INIT: Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. * * Bootchart (a)设置INIT_BOOTCHART标志为真,重新编译整个Android平台 export INIT_BOOTCHART=true make -j4 (b)设置INIT_BOOTCHART标志为真,重新编译init模块 touch system/core/init/init.c m INIT_BOOTCHART=true Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. * * Bootchart 安装新的INIT到系统镜像中 emulator -avd @AVDName -ramdisk out/target/product/generic/ramdisk.img 在系统启动的时候触发Bootchart功能 adb shell# echo 60 /data/bootchart-start 从系统中获取收集到的数据 adb shell# ls data/bootchart header kernel_pacct proc_diskstats.log proc_ps.log proc_stat.log Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. * * Bootchart 根据收集到的数据生成图表 bootchart bootchart.tgz lsbootchart.png bootchart.tgz Bootchart将生成PNG格式的图片。当然,可以指定为其他格式的图片。如果有打印用途,则可以指定为EPS格式的;如果有放大、查看细节等需求,则可以指定为SVG格式的。 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011

文档评论(0)

1亿VIP精品文档

相关文档