-
大小: 60.79MB文件类型: .zip金币: 2下载: 2 次发布日期: 2022-12-05
- 语言: Java
- 标签: 瑞芯微 RK FWFactoryToo
资源简介
版本历史
版本号 作者 修改日期 修改说明 备注
V5.44 lfy 2018.10.21
基础版本
V5.48 lfy 2018.10.26
修改 ubootlogo,kernelogo
V5.49 lfy 2018.12.05
修改充电动画
V5.50 lfy 2019.01.05
Android4.4-8.1 平台兼容
V5.51 lfy 2019.04.27
解决 Android6.0 平台预制大规模
的 apk(100 多个,3.2G);
解决 Android8.1 和 Android7.1
的固件版本显示问题
V5.51 lfy 2019.05.06
解决 Android5.1 RK3188 平台解
包和打包没有 resource.img 问题
V5.52 lfy 2019.06.03
支持Andorid9.0平台的预制apk,
替换开机动画;目前还需要完善的
功能是预制uboot,kernel logo,预
制system分区的apk,修改壁纸功
版本号 作者 修改日期 修改说明 备注
V5.44 lfy 2018.10.21
基础版本
V5.48 lfy 2018.10.26
修改 ubootlogo,kernelogo
V5.49 lfy 2018.12.05
修改充电动画
V5.50 lfy 2019.01.05
Android4.4-8.1 平台兼容
V5.51 lfy 2019.04.27
解决 Android6.0 平台预制大规模
的 apk(100 多个,3.2G);
解决 Android8.1 和 Android7.1
的固件版本显示问题
V5.51 lfy 2019.05.06
解决 Android5.1 RK3188 平台解
包和打包没有 resource.img 问题
V5.52 lfy 2019.06.03
支持Andorid9.0平台的预制apk,
替换开机动画;目前还需要完善的
功能是预制uboot,kernel logo,预
制system分区的apk,修改壁纸功
代码片段和文件信息
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2011-2012 The Linux Foundation. All rights reserved.
#
# Redistribution and use in source and binary forms with or without
# modification are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of The Linux Foundation nor
# the names of its contributors may be used to endorse or promote
# products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS“
# AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING BUT NOT LIMITED TO THE
# IMPLIED WARRANTIES OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE AND
# NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT INDIRECT INCIDENTAL SPECIAL
# EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE DATA OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY
# WHETHER IN CONTRACT STRICT LIABILITY OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Invoke gcc looking for warnings and causing a failure if there are
# non-whitelisted warnings.
import errno
import re
import os
import sys
import subprocess
# Note that gcc uses unicode which may depend on the locale. TODO:
# force LANG to be set to en_US.UTF-8 to get consistent warnings.
allowed_warnings = set([
“return_address.c:63“
“hid-appleir.c:347“
“hid-magicmouse.c:580“
“hid-ntrig.c:1026“
“core.c:1334“
“menu.c:129“
“bus.c:318“ # FIXME
“atags_to_fdt.c:96“
])
# Capture the name of the object file can find it.
ofile = None
warning_re = re.compile(r‘‘‘(.*/|)([^/]+\.[a-z]+:\d+):(\d+:)? warning:‘‘‘)
def interpret_warning(line):
“““Decode the message from gcc. The messages we care about have a filename and a warning“““
line = line.rstrip(‘\n‘)
m = warning_re.match(line)
if m and m.group(2) not in allowed_warnings:
print “error forbidden warning:“ m.group(2)
# If there is a warning remove any object if it exists.
if ofile:
try:
os.remove(ofile)
except OSError:
pass
sys.exit(1)
def run_gcc():
args = sys.argv[1:]
# Look for -o
try:
i = args.index(‘-o‘)
global ofile
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-06-03 20:40 FwFactoryTool_V5.52\
目录 0 2019-06-03 20:22 FwFactoryTool_V5.52\bin\
文件 0 2018-08-02 16:59 FwFactoryTool_V5.52\bin\1100m-s-a
文件 161792 2018-05-14 09:15 FwFactoryTool_V5.52\bin\adb.exe
文件 96256 2018-05-14 09:15 FwFactoryTool_V5.52\bin\AdbWinApi.dll
文件 60928 2018-05-14 09:15 FwFactoryTool_V5.52\bin\AdbWinUsbApi.dll
文件 234496 2018-11-16 15:13 FwFactoryTool_V5.52\bin\AFPTool.exe
文件 6170 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_0.bmp
文件 6300 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_1.bmp
文件 6300 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_2.bmp
文件 6300 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_3.bmp
文件 6300 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_4.bmp
文件 6196 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_5.bmp
文件 6680 2019-01-26 11:31 FwFactoryTool_V5.52\bin\battery_fail.bmp
文件 16384 2018-05-14 09:15 FwFactoryTool_V5.52\bin\bmptoppm.exe
文件 10543133 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cc1.exe
文件 41720 2018-05-14 09:15 FwFactoryTool_V5.52\bin\convert.exe
文件 124430 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cpio.exe
文件 33758 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cramfsck.exe
文件 84509 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygaa-1.dll
文件 35869 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygamd-0.dll
文件 38414 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygao-4.dll
文件 116765 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygapr-1-0.dll
文件 119837 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygaprutil-1-0.dll
文件 226318 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygarchive-2.dll
文件 38429 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygargp-0.dll
文件 6670 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygasprintf-0.dll
文件 18973 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygasyncns-0.dll
文件 115741 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygatk-1.0-0.dll
文件 156701 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygatk-bridge-2.0-0.dll
文件 128541 2018-05-14 09:15 FwFactoryTool_V5.52\bin\cygatspi-0.dll
............此处省略753个文件信息
相关资源
- RK3326开发资料
- java根据模板导出PDF详细教程(包含统
- xwork-2.0.4.jar免费
- Java中使用 FreeMarker 生成pdf盖章合同文
- Airkiss一键配网小工具
- 25个经典Spark算子的JAVA实现
- Introduction to Neural Networks
- 大数据hadoop,spark,hive等等面试汇总
- android以太网路由功能,共享功能实现
- sbt-launch.jar(0.13.9版已修改
- 仿知乎-Spring+SpringMVC+MyBatis+FreeMarker+
- 计算机网络课程设计报告_DH算法_Wir
- 数据结构与算法分析_java语言描述_M
- Spark-The Definitive Guide Big Data Processing
-
fr
amework.jar - HSSFWorkbookXSSFWorkbook所需全部jar
- Drools6 Workbench依赖的jar包
- rk3288Android7.1.2rk808edp
-
android的fr
amework.jar包 - spark版本xgboost的jar包
- TCP/IP协议及网络编程技术 大作业——
- spark2.1.0.chmspark java API
- Spring MVC+MyBatis+FreeMarker整合开发java
- Javaweb 图书购买系统
- Java NetWork Programming 4th
- RK3288/3399 Android Root包
- 仿共享单车显示地图中心位置附近的
- Neural Network Programming with Java
-
spring-fr
amework-2.5.6 (含junit-4.4.jar、 -
org.spring-fr
amework-3.0.4. 所有jar
评论
共有 条评论