Firmware of Silead Touchscreen Controller for Jumper EZpad 6 Pro.
Revisión | d45f8134266757ff7b2c266bdb8fd301dd53fee1 (tree) |
---|---|
Tiempo | 2021-01-10 19:42:42 |
Autor | Fuhito Suguri <bitwalk@gmai...> |
Commiter | Fuhito Suguri |
add RPM specs for Jumper Ezpad 6 Pro
@@ -0,0 +1,56 @@ | ||
1 | +%define current_kernel %(uname -r) | |
2 | + | |
3 | +%global debug_package %{nil} | |
4 | +%global firmware_release 1 | |
5 | + | |
6 | +%global _firmwarepath /usr/lib/firmware | |
7 | +%define _binaries_in_noarch_packages_terminate_build 0 | |
8 | + | |
9 | +Name: mssl1680-firmware-jumper-ezpad6pro | |
10 | +Version: 1.0.git20201209.e247c34 | |
11 | +Release: %{firmware_release}%{?dist} | |
12 | +Summary: Firmware images for the Silead touchscreen controllers in Jumper EZpad 6 pro | |
13 | +License: GPLv2+ | |
14 | +Group: Hardware/Other | |
15 | +URL: https://github.com/onitake/gsl-firmware | |
16 | +BuildArch: noarch | |
17 | + | |
18 | +Source: gsl-firmware-%{version}.tar.xz | |
19 | + | |
20 | +BuildRoot: %{_tmppath}/%{name}-%{version}-build | |
21 | + | |
22 | +%description | |
23 | +This repository contains firmware images for the Silead touchscreen controllers in various tablet (and other) devices. | |
24 | + | |
25 | +There is also a number of conversion tools here that help with extraction and preparation of firmware images. | |
26 | + | |
27 | +The firmware files were extracted from Android and Windows device drivers, as published by device manufacturers. They are intended for people who prefer to replace the shipped operating system with a generic Linux distribution such as Debian or Ubuntu. | |
28 | + | |
29 | +The files may be covered by proprietary licenses or copyright. Please consult the manufacturer's website or device documentation for more information. | |
30 | + | |
31 | +In contrast, everything in the tools directory is published under the GNU General Public license v2, as laid out in tools/LICENSE. | |
32 | + | |
33 | +See below for instructions on how to submit firmware for a new device. | |
34 | + | |
35 | + | |
36 | +%prep | |
37 | +%setup -n gsl-firmware-%{version} | |
38 | + | |
39 | +%build | |
40 | + | |
41 | +%install | |
42 | +mkdir -p %{buildroot}%{_firmwarepath}/silead | |
43 | +cp -r firmware/linux/silead/gsl3692-jumper-ezpad-6-pro.fw %{buildroot}%{_firmwarepath}/silead/mssl1680.fw | |
44 | + | |
45 | +%post | |
46 | +%postun | |
47 | + | |
48 | +%files | |
49 | +%defattr(-,root,root) | |
50 | +%doc firmware/jumper/EZpad_6_pro/README.md | |
51 | +%dir %{_firmwarepath} | |
52 | +%{_firmwarepath}/* | |
53 | + | |
54 | +%changelog | |
55 | +* Sat Jan 09 2021 Fuhito Suguri <bitwalk@users.sourceforge.net> - 1.0.git20201209.e247c34 | |
56 | +- initial version from upstream |