• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Firmware of Silead Touchscreen Controller for Jumper EZpad 6 Pro.


Commit MetaInfo

修订版97fbf24b89b90a710358280543a631c767033a21 (tree)
时间2016-11-19 02:55:46
作者Gregor Riepl <onitake@gmai...>
CommiterGitHub

Log Message

Merge pull request #24 from jwrdegoede/master

Add firmware files ready for use with the upstream Linux silead.ko driver

更改概述

差异

--- /dev/null
+++ b/firmware/linux/README.md
@@ -0,0 +1,27 @@
1+# Firmware files ready for use with the upstream Linux silead.ko driver
2+
3+This directory containts firmware images in the format expected by
4+the silead.ko driver which is now part of the mainline kernel; and
5+with filenames such as expected by the devicetree files (for ARM)
6+shipped with the mainline kernel.
7+
8+## Installation
9+
10+To install these firmware files for use with the mainline kernel
11+simply copy the silead directory to /lib/firmware/silead:
12+
13+ cp -pr silead /lib/firmware
14+
15+## List of included firmware files
16+
17+| Filename | For use with |
18+|----------------------------------|--------------|
19+| gsl1680-a082-q8-700.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id a082, variant 0 |
20+| gsl1680-a082-q8-a70.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id a082, variant 1 |
21+| gsl1680-b482-q8-d702.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id b482, variant 0 |
22+| gsl1680-b482-q8-a70.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id b482, variant 1 |
23+| gsl1680-inet86dz.fw | Allwinner A23 7" tablets with inet86dz mainboard |
24+| gsl1680-polaroid-mid2407pxe03.fw | Polaroid 7" MID2407PXE03 tablets |
25+| gsl3670-polaroid-mid2809pxe04.fw | Polaroid 9" MID2809PXE04 tablets |
26+| gsl3675-ga10h.fw | Allwinner A33 10" tablets with ga10h mainboard |
27+| gsl3675-gt90h.fw | Allwinner A23 9" tablets with ga10h mainboard |
Binary files /dev/null and b/firmware/linux/silead/gsl1680-a082-q8-700.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl1680-a082-q8-a70.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl1680-b482-q8-a70.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl1680-b482-q8-d702.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl1680-inet86dz.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl1680-polaroid-mid2407pxe03.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl3670-polaroid-mid2809pxe04.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl3675-ga10h.fw differ
Binary files /dev/null and b/firmware/linux/silead/gsl3675-gt90h.fw differ
--- a/tools/fw_extractor
+++ b/tools/fw_extractor
@@ -20,9 +20,10 @@ if len(args) != 1:
2020
2121 rodata = args[0]
2222
23-args = rodata.split()
23+args = rodata.split(']')
24+args = args[1].split()
2425
25-offset = int(args[4], 16)
26+offset = int(args[3], 16)
2627
2728 print ".rodata offset is ", offset, "\n"
2829