We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecf0039 commit 37af3a7Copy full SHA for 37af3a7
1 file changed
src/stub.py
@@ -5,6 +5,7 @@
5
from asahi_firmware.bluetooth import BluetoothFWCollection
6
from asahi_firmware.multitouch import MultitouchFWCollection
7
from asahi_firmware.kernel import KernelFWCollection
8
+from asahi_firmware.isp import ISPFWCollection
9
from util import *
10
11
class StubInstaller(PackageInstaller):
@@ -390,6 +391,9 @@ def collect_firmware(self, pkg):
390
391
logging.info("Collecting Multitouch firmware")
392
col = MultitouchFWCollection("fud_firmware/")
393
pkg.add_files(sorted(col.files()))
394
+ logging.info("Collecting ISP firmware")
395
+ col = ISPFWCollection("recovery/usr/sbin/")
396
+ pkg.add_files(sorted(col.files()))
397
logging.info("Collecting Kernel firmware")
398
col = KernelFWCollection(self.kernel_path)
399
0 commit comments