NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
16.49k stars 12.99k forks source link

Raspberry Pi device tree overlays do not apply on 21.05 #125354

Open sbourdeauducq opened 3 years ago

sbourdeauducq commented 3 years ago

In NixOS 21.05, the hardware.deviceTree.base option can no longer be used. After trying to do some research, I figured out that the lines that I was using successfully:

 hardware.deviceTree.enable = true;
 hardware.deviceTree.base = pkgs.device-tree_rpi;
 hardware.deviceTree.overlays = [ "${pkgs.device-tree_rpi.overlays}/rpi-poe.dtbo" ];

could be replaced with:

  hardware.deviceTree.enable = true;
  hardware.deviceTree.filter = "*rpi*.dtb";
  hardware.deviceTree.overlays = [ { name = "poe"; dtboFile = "${pkgs.device-tree_rpi.overlays}/rpi-poe.dtbo"; } ];

However this did not work, the device tree overlay is no longer applied.

I suppose this is a straightforward problem for who made the change. Could the documentation be updated to explain how to migrate from hardware.deviceTree.base ?

domenkozar commented 3 years ago

There might be some clues in https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/modesetting.nix

sbourdeauducq commented 3 years ago

That's doing pretty much the same as my code above...

@sorki @georgewhewell @kwohlfahrt you authored the patch that changed things (6c9df40a4bc819fcab0836ad28ee944c8ce66db0), do you have an idea?

sorki commented 3 years ago

It's actually not straightforward at all since the overlays distributed by RPi foundation (part of device-tree_rpi work with their kernel but we're using the upstream one by default. The most important bit is the compatible = "brcm,bcm2711"; line, which governs where the overlay is actually applied.

Try the nixos-hardware solution and if it doesn't work we can debug further. Also please add which linuxPackages you're using.

sbourdeauducq commented 3 years ago

I am using pkgs.linuxPackages_rpi3, on a Raspberry Pi 3 Model B+, which is not in nixos-hardware.

sbourdeauducq commented 3 years ago

I am looking at the files inside the directories pointed to by FDTDIR in extlinux.conf using fdtdump.

On 21.05, I don't get an entry for rpi-poe-fan. On the previous 20.09 generations where it was working, the entry is present (in all the files AFAICT):

    rpi-poe-fan@0 {
        phandle = <0x00000072>;
        status = "okay";
        cooling-levels = <0x00000000 0x0000001f 0x0000003f 0x00000096 0x000000ff>;
        #cooling-cells = <0x00000002>;
        cooling-max-state = <0x00000004>;
        cooling-min-state = <0x00000000>;
        firmware = <0x00000007>;
        compatible = "raspberrypi,rpi-poe-fan";
    };

So this just looks like an issue with overlay application in NixOS.

sbourdeauducq commented 3 years ago

Seems to be a problem with the compat string...

$ fdtget -t s nixos/lqf1bm3m39i9q1z6agrbr0m3xik4mpr1-device-tree-overlays/broadcom/bcm2710-rpi-3-b-plus.dtb / compatible
raspberrypi,3-model-b-plus brcm,bcm2837  # from the extlinux.conf files
$ dtbCompat="raspberrypi,3-model-b-plus brcm,bcm2837"
$ overlayCompat="raspberrypi,rpi-poe-fan"
$ if [[ "$dtbCompat" =~ "$overlayCompat" ]]; then  # from pkgs/os-specific/linux/device-tree/default.nix
> echo ok
> else
> echo fail
> fi
fail
sorki commented 3 years ago

Nice, looks like you need to adjust the overlay to have to only have raspberrypi in compatible. I'm open to suggestion how to make this less cranky to diagnose / override the compatible string.

sbourdeauducq commented 3 years ago

The overlay is directly from nixpkgs, so this is a bug in nixpkgs.

sorki commented 3 years ago

Sure, removal of pkgs.device-tree_rpi is also a solution.

sbourdeauducq commented 3 years ago

Please don't - this package contains important files for correct Rasberry Pi hardware support.

I couldn't get things to work on Raspberry Pi 3 by tweaking the compatible strings or the compatibility detection code - with the new code there would always be some conflicting DTB files that would cause some problem at build or at boot time. It did work on Raspberry Pi 4.

If anyone comes here trying to get their PoE fan (or other DTB hardware) to work on a Raspberry Pi 3, this workaround will do it: https://git.m-labs.hk/M-Labs/it-infra/commit/8924e769f0b4ca9c701ea0ced27203a962051d0f

iwanb commented 3 years ago

I've also been facing this issue. Could it be a bug in the RPI firmware as the RPI3 has this compatible string (boot/bcm2710-rpi-3-b.dtb):

compatible = "raspberrypi,3-model-b\0brcm,bcm2837";

while most overlays use:

compatible = "brcm,bcm2835";

AFAIK the RPI3 is also compatible with bcm2835, so I would expect it to be in the compatible string of boot/bcm2710-rpi-3-b.dtb (and all RPI < 4).

sorki commented 3 years ago

Please don't - this package contains important files for correct Rasberry Pi hardware support.

I never needed anything from it for correct Pi support.

If you use overlays maintained by vendor (RPi foundation) and their fork of Linux in form linuxPackages_rpiX and their custom bootloader you should also use config.txt and their custom mechanism of applying overlays.

IMHO none of these things have their place in nixpkgs and would be better if they were part of e.g. nixos-hardware (or ideally not existed at all).

It was probably a mistake to make the mechanism compatible with binary RPi specific overlays since it only creates trouble. It's also trivial to grab a DTS file, adjust compatible string and use the NixOS mechanism.

As I've said before - suggestions to improve the situation welcome but please stop repeating "This is a bug in nixpkgs" since that doesn't help at all.

sbourdeauducq commented 3 years ago

I never needed anything from it for correct Pi support.

Without this package, things like the PoE fan cannot work AFAICT.

It's also trivial to grab a DTS file, adjust compatible string and use the NixOS mechanism.

It would appear that it is not trivial (or maybe I'm an idiot) since this only worked on RPI 4 when I tried it.

The older code is simpler and works with RPI 3 and 4. What was the motivation for the change?

sorki commented 3 years ago

It's also trivial to grab a DTS file, adjust compatible string and use the NixOS mechanism.

It would appear that it is not trivial (or maybe I'm an idiot) since this only worked on RPI 4 when I tried it.

It depends on which kernel you try to apply it.

The older code is simpler and works with RPI 3 and 4. What was the motivation for the change?

It was a bit RPi specific since it only allowed applying binary overlays to all DTBs (edit: which was only applicable to pkgs.device-tree_rpi and linuxPackages_rpiX, not mainline Linux).

06kellyjac commented 2 years ago

Is there an update on this? I'd love to get my poe fan working.

I've tried the device tree setup in https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/poe-hat.nix I've also tried a newer copy from https://github.com/raspberrypi/linux/blob/rpi-5.15.y/arch/arm/boot/dts/overlays/rpi-poe-overlay.dts

I've tried generic-extlinux-compatible and raspberryPi bootloaders but no luck so far

sorki commented 2 years ago

Is there an update on this? I'd love to get my poe fan working.

There's no much to fix here I'm afraid maybe except documentation or error messages.

I've tried the device tree setup in https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/poe-hat.nix I've also tried a newer copy from https://github.com/raspberrypi/linux/blob/rpi-5.15.y/arch/arm/boot/dts/overlays/rpi-poe-overlay.dts

Is this Pi4? Do you also use toplevel module which configures rpi specific kernel (https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/default.nix#L15)?

Does the newer copy match the kernel version?

I've tried generic-extlinux-compatible and raspberryPi bootloaders but no luck so far

This should be bootloader independent, both load a device tree built by the module - difference is that raspberryPi bootloader can also apply overlays on boot via config.txt as is custom on Raspbian (not sure if this works with our images).

sbourdeauducq commented 2 years ago

@06kellyjac it may not be kosher, but the commit I posted above does get PoE fans spinning on RPI 3 and 4 using the latest 21.11.

06kellyjac commented 2 years ago

Is this Pi4? Do you also use toplevel module which configures rpi specific kernel (https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/default.nix#L15)?

Yes and yes

Does the newer copy match the kernel version?

Yep linuxPackages_rpi4 is now 5.15 so I pulled the config from 5.15.y

https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query=rpi4

https://github.com/06kellyjac/nixos-hardware/blob/rpi-poe/raspberry-pi/4/poe-hat.nix#L18-L167


I'm very tempted to apply the revert commit just to get it working again but I'd rather have it fixed properly, especially ahead of 22.05

sorki commented 2 years ago

Note that nixos-hardware overlay has adjusted compatible https://github.com/NixOS/nixos-hardware/blob/master/raspberry-pi/4/poe-hat.nix#L29

You can consult logs to see if the overlay is applied to the right DTB. The mechanism compares comatible of the DTB https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/device-tree/default.nix#L16 vs compatible of the overlay https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/device-tree/default.nix#L19 and only applies overlay if they match (in which case you get Applying overlay log message https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/device-tree/default.nix#L22).

For further debugging you can build just a config.hardware.deviceTree.package

That said, your compatible won't match pi4 - you either need to set it to raspberrypi (in which case it applies to all rpi device trees) or brcm,bcm2711 for just pi4.

06kellyjac commented 2 years ago

Thanks for the help.

I updated it to brcm,bcm2711 (https://github.com/06kellyjac/nixos-hardware/blob/rpi-poe/raspberry-pi/4/poe-hat.nix#L29) and got this:

$ nix build .#nixosConfigurations.rpi4.config.hardware.deviceTree.package -L
rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:108.11-24: Warning (reg_format): /fragment@4/__overlay__/poe@51/poe_pwm@f0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:116.14-121.5: Warning (unit_address_vs_reg): /fragment@5: node has a unit name, but no reg or ranges property
rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:123.14-128.5: Warning (unit_address_vs_reg): /fragment@6: node has a unit name, but no reg or ranges property
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (pci_device_reg): Failed prerequisite 'reg_format'
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (simple_bus_reg): Failed prerequisite 'reg_format'
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:106.33-111.11: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #address-cells value
rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:106.33-111.11: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #size-cells value
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (avoid_unnecessary_addr_size): Failed prerequisite 'avoid_default_addr_size'
rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (unique_unit_address): Failed prerequisite 'avoid_default_addr_size'
dtbs-with-symbols> unpacking sources

# ...

dtbs-with-symbols> checking for references to /build/ in /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols...
dtbs-filtered> ./broadcom -> /nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom
dtbs-filtered> './broadcom/bcm2711-rpi-400.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-400.dtb'
dtbs-filtered> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-4-b.dtb'
dtbs-filtered> './broadcom/bcm2711-rpi-cm4.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-cm4.dtb'
device-tree-overlays> ./broadcom -> /nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom
device-tree-overlays> './broadcom/bcm2711-rpi-400.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-400.dtb'
device-tree-overlays> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-4-b.dtb'
device-tree-overlays> './broadcom/bcm2711-rpi-cm4.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-cm4.dtb'
device-tree-overlays> Applying overlay rpi-poe-overlay to bcm2711-rpi-400.dtb
device-tree-overlays> Failed to apply '/nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo': FDT_ERR_NOTFOUND
$ fdtget -t s /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo / compatible
brcm,bcm2711

Decompile looks the same AFAIK and after quitting less the same warnings are logged

$ dtc -I dtb -O dts /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo | less
<stdout>: Warning (reg_format): /fragment@4/__overlay__/poe@51/poe_pwm@f0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1)
<stdout>: Warning (unit_address_vs_reg): /fragment@5: node has a unit name, but no reg or ranges property
<stdout>: Warning (unit_address_vs_reg): /fragment@6: node has a unit name, but no reg or ranges property
<stdout>: Warning (pci_device_reg): Failed prerequisite 'reg_format'
<stdout>: Warning (pci_device_bus_num): Failed prerequisite 'reg_format'
<stdout>: Warning (simple_bus_reg): Failed prerequisite 'reg_format'
<stdout>: Warning (i2c_bus_reg): Failed prerequisite 'reg_format'
<stdout>: Warning (spi_bus_reg): Failed prerequisite 'reg_format'
<stdout>: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #address-cells value
<stdout>: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #size-cells value
<stdout>: Warning (avoid_unnecessary_addr_size): Failed prerequisite 'avoid_default_addr_size'
<stdout>: Warning (unique_unit_address): Failed prerequisite 'avoid_default_addr_size'
full log ``` $ nix build .#nixosConfigurations.rpi4.config.hardware.deviceTree.package -L rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:108.11-24: Warning (reg_format): /fragment@4/__overlay__/poe@51/poe_pwm@f0:reg: property has invalid length (4 bytes) (#address-cells == 2, #size-cells == 1) rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:116.14-121.5: Warning (unit_address_vs_reg): /fragment@5: node has a unit name, but no reg or ranges property rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:123.14-128.5: Warning (unit_address_vs_reg): /fragment@6: node has a unit name, but no reg or ranges property rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (pci_device_reg): Failed prerequisite 'reg_format' rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (pci_device_bus_num): Failed prerequisite 'reg_format' rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (simple_bus_reg): Failed prerequisite 'reg_format' rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (i2c_bus_reg): Failed prerequisite 'reg_format' rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (spi_bus_reg): Failed prerequisite 'reg_format' rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:106.33-111.11: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #address-cells value rpi-poe-overlay-dtbo> /nix/store/ihnivsgxfp9qqm2438cywajp9qyql80a-dts:106.33-111.11: Warning (avoid_default_addr_size): /fragment@4/__overlay__/poe@51/poe_pwm@f0: Relying on default #size-cells value rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (avoid_unnecessary_addr_size): Failed prerequisite 'avoid_default_addr_size' rpi-poe-overlay-dtbo> /nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo: Warning (unique_unit_address): Failed prerequisite 'avoid_default_addr_size' dtbs-with-symbols> unpacking sources dtbs-with-symbols> unpacking source archive /nix/store/xmjaqyfpi1jhank46rpjv9v2d4xj0l6g-source dtbs-with-symbols> source root is source dtbs-with-symbols> patching sources dtbs-with-symbols> applying patch /nix/store/mnlqwys9dxznjcvq4w3s0435s9ql8qv8-bridge-stp-helper.patch dtbs-with-symbols> patching file net/bridge/br_private.h dtbs-with-symbols> Hunk #1 succeeded at 50 with fuzz 2 (offset 11 lines). dtbs-with-symbols> applying patch /nix/store/mbz5gln1q4swlzmqs2399br98qjif9kn-request-key-helper.patch dtbs-with-symbols> patching file security/keys/request_key.c dtbs-with-symbols> updateAutotoolsGnuConfigScriptsPhase dtbs-with-symbols> configuring dtbs-with-symbols> no configure script, doing nothing dtbs-with-symbols> building dtbs-with-symbols> patching script interpreter paths in scripts/Kbuild.include scripts/Kconfig.include scripts/Lindent scripts/Makefile scripts/Makefile.asm-generic scripts/Makefile.build scripts/Makefile.clang scripts/Makefile.clean scripts/Makefile.compiler scripts/Makefile.dtbinst scripts/Makefile.extrawarn scripts/Makefile.gcc-plugins scripts/Makefile.headersinst scripts/Makefile.host scripts/Makefile.kasan scripts/Makefile.kcov scripts/Makefile.kcsan scripts/Makefile.lib scripts/Makefile.modfinal scripts/Makefile.modinst scripts/Makefile.modpost scripts/Makefile.package scripts/Makefile.ubsan scripts/Makefile.userprogs scripts/adjust_autoksyms.sh scripts/as-version.sh scripts/asn1_compiler.c scripts/atomic scripts/basic scripts/bin2c.c scripts/bloat-o-meter scripts/bootgraph.pl scripts/bpf_doc.py scripts/cc-can-link.sh scripts/cc-version.sh scripts/check-sysctl-docs scripts/check_extable.sh scripts/checkdeclares.pl scripts/checkincludes.pl scripts/checkkconfigsymbols.py scripts/checkpatch.pl scripts/checkstack.pl scripts/checksyscalls.sh scripts/checkversion.pl scripts/clang-tools scripts/cleanfile scripts/cleanpatch scripts/coccicheck scripts/coccinelle scripts/config scripts/const_structs.checkpatch scripts/decode_stacktrace.sh scripts/decodecode scripts/depmod.sh scripts/dev-needs.sh scripts/diffconfig scripts/documentation-file-ref-check scripts/dtc scripts/dummy-tools scripts/export_report.pl scripts/extract-cert.c scripts/extract-ikconfig scripts/extract-module-sig.pl scripts/extract-sys-certs.pl scripts/extract-vmlinux scripts/extract_xc3028.pl scripts/faddr2line scripts/file-size.sh scripts/find-unused-docs.sh scripts/gcc-goto.sh scripts/gcc-ld scripts/gcc-plugins scripts/gcc-x86_32-has-stack-protector.sh scripts/gcc-x86_64-has-stack-protector.sh scripts/gdb scripts/gen_autoksyms.sh scripts/gen_ksymdeps.sh scripts/generate_initcall_order.pl scripts/genksyms scripts/get_abi.pl scripts/get_dvb_firmware scripts/get_feat.pl scripts/get_maintainer.pl scripts/gfp-translate scripts/headerdep.pl scripts/headers_check.pl scripts/headers_install.sh scripts/insert-sys-cert.c scripts/jobserver-exec scripts/kallsyms.c scripts/kconfig scripts/kernel-doc scripts/ksymoops scripts/ld-version.sh scripts/leaking_addresses.pl scripts/link-vmlinux.sh scripts/makelst scripts/markup_oops.pl scripts/min-tool-version.sh scripts/mkcompile_h scripts/mksysmap scripts/mkuboot.sh scripts/mod scripts/module.lds.S scripts/modules-check.sh scripts/nsdeps scripts/objdiff scripts/package scripts/parse-maintainers.pl scripts/patch-kernel scripts/profile2linkerlist.pl scripts/prune-kernel scripts/recordmcount.c scripts/recordmcount.h scripts/recordmcount.pl scripts/remove-stale-files scripts/selinux scripts/setlocalversion scripts/show_delta scripts/sign-file.c scripts/sorttable.c scripts/sorttable.h scripts/spdxcheck-test.sh scripts/spdxcheck.py scripts/spelling.txt scripts/sphinx-pre-install scripts/split-man.pl scripts/stackdelta scripts/stackusage scripts/subarch.include scripts/syscallhdr.sh scripts/syscallnr.sh scripts/syscalltbl.sh scripts/tags.sh scripts/tools-support-relr.sh scripts/tracing scripts/unifdef.c scripts/ver_linux scripts/xen-hypercalls.sh scripts/xz_wrap.sh dtbs-with-symbols> scripts/Lindent: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/adjust_autoksyms.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/as-version.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/gen-atomics.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/gen-atomic-long.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/gen-atomic-instrumented.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/gen-atomic-fallback.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/check-atomics.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/atomic/atomic-tbl.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/bloat-o-meter: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/bootgraph.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/bpf_doc.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/cc-can-link.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/cc-version.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/check-sysctl-docs: interpreter directive changed from "#!/usr/bin/gawk -f" to "/nix/store/bzaf005iz7fz5gyhc1r3m0nrw8pq142a-gawk-5.1.1/bin/gawk -f" dtbs-with-symbols> scripts/check_extable.sh: interpreter directive changed from "#! /bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/checkdeclares.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/checkincludes.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/checkkconfigsymbols.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/checkpatch.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/checkstack.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/checksyscalls.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/checkversion.pl: interpreter directive changed from "#! /usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/clang-tools/run-clang-tools.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/clang-tools/gen_compile_commands.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/cleanfile: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/cleanpatch: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/coccicheck: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/config: interpreter directive changed from "#!/usr/bin/env bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/decode_stacktrace.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/decodecode: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/depmod.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/dev-needs.sh: interpreter directive changed from "#! /bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/diffconfig: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/documentation-file-ref-check: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/dtc/update-dtc-source.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/dtc/dtx_diff: interpreter directive changed from "#! /bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/dtc/dt_to_config: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/dummy-tools/ld: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/dummy-tools/gcc: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/export_report.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/extract-ikconfig: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/extract-module-sig.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/extract-sys-certs.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/extract-vmlinux: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/extract_xc3028.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/faddr2line: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/file-size.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/find-unused-docs.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/gcc-goto.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gcc-ld: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gcc-plugins/gen-random-seed.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gcc-x86_32-has-stack-protector.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gcc-x86_64-has-stack-protector.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gen_autoksyms.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/gen_ksymdeps.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/generate_initcall_order.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/get_abi.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/get_dvb_firmware: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/get_feat.pl: interpreter directive changed from "#!/usr/bin/perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/get_maintainer.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/gfp-translate: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/headerdep.pl: interpreter directive changed from "#! /usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/headers_check.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/headers_install.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/jobserver-exec: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/kconfig/streamline_config.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/kconfig/qconf-cfg.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/kconfig/nconf-cfg.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/kconfig/merge_config.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/kconfig/mconf-cfg.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/kconfig/gconf-cfg.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/kernel-doc: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/ld-version.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/leaking_addresses.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/link-vmlinux.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/makelst: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/markup_oops.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/min-tool-version.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/mkcompile_h: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/mksysmap: interpreter directive changed from "#!/bin/sh -x" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh -x" dtbs-with-symbols> scripts/mkuboot.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/modules-check.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/objdiff: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/package/mkspec: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/package/mkdebian: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/package/buildtar: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/package/builddeb: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/parse-maintainers.pl: interpreter directive changed from "#!/usr/bin/perl -w" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl -w" dtbs-with-symbols> scripts/patch-kernel: interpreter directive changed from "#! /bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/profile2linkerlist.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/prune-kernel: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/recordmcount.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/remove-stale-files: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/selinux/install_policy.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/setlocalversion: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/show_delta: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python" dtbs-with-symbols> scripts/spdxcheck.py: interpreter directive changed from "#!/usr/bin/env python3" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python3" dtbs-with-symbols> scripts/sphinx-pre-install: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/split-man.pl: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/stackdelta: interpreter directive changed from "#!/usr/bin/env perl" to "/nix/store/7bw13n6m84ck1r61kzalwnxj23r939ca-perl-5.34.1/bin/perl" dtbs-with-symbols> scripts/stackusage: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/syscallhdr.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/syscallnr.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/syscalltbl.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/tags.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/tools-support-relr.sh: interpreter directive changed from "#!/bin/sh -eu" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh -eu" dtbs-with-symbols> scripts/tracing/ftrace-bisect.sh: interpreter directive changed from "#!/bin/bash" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/bash" dtbs-with-symbols> scripts/tracing/draw_functrace.py: interpreter directive changed from "#!/usr/bin/env python" to "/nix/store/dchs6hzy46kxih7w3ji5hhhzabql1cqr-python3-minimal-3.9.12/bin/python" dtbs-with-symbols> scripts/ver_linux: interpreter directive changed from "#!/usr/bin/awk -f" to "/nix/store/bzaf005iz7fz5gyhc1r3m0nrw8pq142a-gawk-5.1.1/bin/awk -f" dtbs-with-symbols> scripts/xen-hypercalls.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> scripts/xz_wrap.sh: interpreter directive changed from "#!/bin/sh" to "/nix/store/ldyxgarwyhqfvsck38g0s8caxqgmxcfk-bash-5.1-p16/bin/sh" dtbs-with-symbols> HOSTCC scripts/basic/fixdep dtbs-with-symbols> HOSTCC scripts/kconfig/conf.o dtbs-with-symbols> HOSTCC scripts/kconfig/confdata.o dtbs-with-symbols> HOSTCC scripts/kconfig/expr.o dtbs-with-symbols> LEX scripts/kconfig/lexer.lex.c dtbs-with-symbols> YACC scripts/kconfig/parser.tab.[ch] dtbs-with-symbols> HOSTCC scripts/kconfig/lexer.lex.o dtbs-with-symbols> HOSTCC scripts/kconfig/menu.o dtbs-with-symbols> HOSTCC scripts/kconfig/parser.tab.o dtbs-with-symbols> HOSTCC scripts/kconfig/preprocess.o dtbs-with-symbols> HOSTCC scripts/kconfig/symbol.o dtbs-with-symbols> HOSTCC scripts/kconfig/util.o dtbs-with-symbols> HOSTLD scripts/kconfig/conf dtbs-with-symbols> *** Default configuration is based on 'defconfig' dtbs-with-symbols> # dtbs-with-symbols> # configuration written to .config dtbs-with-symbols> # dtbs-with-symbols> HOSTCC scripts/dtc/dtc.o dtbs-with-symbols> HOSTCC scripts/dtc/flattree.o dtbs-with-symbols> HOSTCC scripts/dtc/fstree.o dtbs-with-symbols> HOSTCC scripts/dtc/data.o dtbs-with-symbols> HOSTCC scripts/dtc/livetree.o dtbs-with-symbols> HOSTCC scripts/dtc/treesource.o dtbs-with-symbols> HOSTCC scripts/dtc/srcpos.o dtbs-with-symbols> HOSTCC scripts/dtc/checks.o dtbs-with-symbols> HOSTCC scripts/dtc/util.o dtbs-with-symbols> LEX scripts/dtc/dtc-lexer.lex.c dtbs-with-symbols> YACC scripts/dtc/dtc-parser.tab.[ch] dtbs-with-symbols> HOSTCC scripts/dtc/dtc-lexer.lex.o dtbs-with-symbols> HOSTCC scripts/dtc/dtc-parser.tab.o dtbs-with-symbols> HOSTLD scripts/dtc/dtc dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_ro.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_wip.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_sw.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_rw.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_strerror.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_empty_tree.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_addresses.o dtbs-with-symbols> HOSTCC scripts/dtc/libfdt/fdt_overlay.o dtbs-with-symbols> HOSTCC scripts/dtc/fdtoverlay.o dtbs-with-symbols> HOSTLD scripts/dtc/fdtoverlay dtbs-with-symbols> UPD include/config/kernel.release dtbs-with-symbols> DTC arch/arm64/boot/dts/actions/s700-cubieboard7.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/actions/s900-bubblegum-96.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-amarula-relic.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-bananapi-m64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-nanopi-a64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-oceanic-5205-5inmfd.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-olinuxino.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-olinuxino-emmc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-orangepi-win.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-lts.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pine64-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pine64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinebook.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinephone-1.0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinephone-1.1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinephone-1.2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinetab.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-pinetab-early-adopter.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-sopine-baseboard.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a64-teres-i.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-a100-allwinner-perf1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-bananapi-m2-plus-v1.2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-cc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h3-it.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-libretech-all-h5-cc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-neo-plus2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-nanopi-r1s-h5.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-pc2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-prime.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h5-orangepi-zero-plus2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-beelink-gs1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-lite2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-pine-h64-model-b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/allwinner/sun50i-h6-tanix-tx6.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/altera/socfpga_stratix10_socdk_nand.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amazon/alpine-v2-evp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amazon/alpine-v3-evp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amd/amd-overdrive.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amd/amd-overdrive-rev-b0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amd/amd-overdrive-rev-b1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amd/husky.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-axg-s400.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12a-sei510.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12a-u200.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12a-x96-max.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-gsking-x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-gtking.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-gtking-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-a311d-khadas-vim3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-s922x-khadas-vim3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-odroid-n2-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-g12b-ugoos-am6.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-kii-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-nanopi-k2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-nexbox-a95x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-odroidc2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-p200.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-p201.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95-meta.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-vega-s95-telos.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-wetek-hub.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxbb-wetek-play2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s805x-libretech-ac.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-hwacom-amazetv.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-khadas-vim.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-libretech-cc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-libretech-cc-v2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-nexbox-a95x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905x-p212.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-mecool-kii-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p230.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-p231.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-phicomm-n1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-sml5442tw.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s805x-p241.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905w-p281.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905w-tx3-mini.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxl-s905d-libretech-pc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-khadas-vim2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-mecool-kiii-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-minix-neo-u9h.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-nexbox-a1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-q200.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-q201.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-rbox-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-s912-libretech-pc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-vega-s96.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-gxm-wetek-core2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-sm1-bananapi-m5.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-sm1-khadas-vim3l.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-sm1-odroid-c4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-sm1-odroid-hc4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-sm1-sei610.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/amlogic/meson-a1-ad401.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/apm/apm-mustang.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/apm/apm-merlin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/apple/t8103-j274.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/foundation-v8.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/foundation-v8-psci.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/foundation-v8-gicv3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/foundation-v8-gicv3-psci.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/juno.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/juno-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/juno-r2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/rtsm_ve-aemv8a.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/vexpress-v2f-1xv7-ca53x2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/arm/fvp-base-revc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-netgear-r8000p.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm4908/bcm4906-tplink-archer-c2300-v1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/northstar2/ns2-svk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/northstar2/ns2-xmc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/stingray/bcm958742k.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/stingray/bcm958742t.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/stingray/bcm958802a802x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2711-rpi-400.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2711-rpi-4-b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-a-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2837-rpi-3-b-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2837-rpi-cm3-io3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2710-rpi-zero-2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2710-rpi-2-b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2710-rpi-3-b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2710-rpi-3-b-plus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2710-rpi-cm3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/broadcom/bcm2711-rpi-cm4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/cavium/thunder-88xx.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/cavium/thunder2-99xx.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/exynos/exynos5433-tm2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/exynos/exynos5433-tm2e.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/exynos/exynos7-espresso.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1012a-frdm.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1012a-frwy.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1012a-oxalis.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1012a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1012a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-kbox-a-230-ls.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-kontron-sl28-var4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1043a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1043a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1046a-frwy.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1046a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1046a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1088a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls1088a-ten64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls2080a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls2080a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls2080a-simu.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls2088a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-ls2088a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-lx2160a-clearfog-cx.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-lx2160a-honeycomb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-lx2160a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-lx2160a-rdb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/fsl-lx2162a-qds.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-beacon-kit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-ddr4-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-icore-mx8mm-ctouch2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-icore-mx8mm-edimm2.2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-kontron-n801x-s.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-nitrogen-r2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-var-som-symphony.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-venice-gw71xx-0x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-venice-gw72xx-0x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-venice-gw73xx-0x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-venice-gw7901.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mm-venice-gw7902.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mn-beacon-kit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mn-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mn-var-som-symphony.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mn-venice-gw7902.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mp-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mp-phyboard-pollux-rdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-evk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-hummingboard-pulse.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-kontron-pitx-imx8m.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-librem5-r2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-librem5-r3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-librem5-r4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-mnt-reform2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-nitrogen.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-phanbell.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-pico-pi.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-thor96.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-zii-ultra-rmb3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8mq-zii-ultra-zest.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8qm-mek.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8qxp-ai_ml.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8qxp-colibri-eval-v3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/imx8qxp-mek.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/freescale/s32v234-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hi3660-hikey960.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hi3670-hikey970.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hi3798cv200-poplar.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hi6220-hikey.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hip05-d02.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hip06-d03.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/hisilicon/hip07-d05.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/intel/socfpga_agilex_socdk_nand.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/intel/socfpga_n5x_socdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/intel/keembay-evm.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/lg/lg1312-ref.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/lg/lg1313-ref.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-espressobin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-espressobin-emmc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-espressobin-v7.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-espressobin-v7-emmc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-turris-mox.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-3720-uDPU.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-7040-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8040-clearfog-gt-8k.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8040-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8040-mcbin-singleshot.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8040-puzzle-m801.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/armada-8080-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9130-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9130-db-B.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9131-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9131-db-B.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9132-db.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9132-db-B.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9130-crb-A.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/marvell/cn9130-crb-B.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt2712-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt6755-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt6779-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt6795-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt6797-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt6797-x20-dev.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt7622-rfb1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt7622-bananapi-bpi-r64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8167-pumpkin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8173-elm.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8173-elm-hana.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8173-elm-hana-rev7.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8173-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-burnet.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-damu.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-fennel-sku1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-fennel-sku6.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-fennel14.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-juniper-sku16.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-kappa.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-kenzo.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-willow-sku0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-jacuzzi-willow-sku1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-kakadu.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-kodama-sku16.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-kodama-sku272.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-kodama-sku288.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-kodama-sku32.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-krane-sku0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-kukui-krane-sku176.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8183-pumpkin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8192-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/mediatek/mt8516-pumpkin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra132-norrin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-p2371-0000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-p2571.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-p3450-0000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-smaug.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra210-p2894-0050-a08.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra186-p2771-0000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra186-p3509-0000+p3636-0001.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra194-p3509-0000+p3668-0001.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dtb dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/act-led.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adafruit-st7735r.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adafruit18.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adau1977-adc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adau7002-simple.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ads1015.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ads1115.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ads7846.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adv7282m.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/adv728x-m.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/akkordion-iqdacplus.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-boss-dac-pcm512x-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-boss2-dac-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-digione.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-katana-dac-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-piano-dac-pcm512x-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/anyspi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/apds9960.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/applepi-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/at86rf233.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audioinjector-addons.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audioinjector-isolated-soundcard.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audioinjector-ultra.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audioinjector-wm8731-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audiosense-pi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/audremap.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/balena-fin.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/cap1106.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/chipdip-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/cma.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/cutiepi-panel.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dht11.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dionaudio-loco.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dionaudio-loco-v2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/disable-bt.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/disable-wifi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dpi18.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dpi18cpadhi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dpi24.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/draws.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dwc-otg.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/dwc2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/edt-ft5406.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/enc28j60.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/enc28j60-spi2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/exc3000.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/fbtft.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/fe-pi-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/fsm-demo.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ghost-amp.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/goodix.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/googlevoicehat-soundcard.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-fan.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-ir.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-ir-tx.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-key.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-led.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-no-bank0-irq.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-no-irq.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-poweroff.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/gpio-shutdown.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hd44780-lcd.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hdmi-backlight-hwhack-gpio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-amp.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-amp100.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dacplus.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dacplusadc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dacplusadcpro.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dacplusdsp.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-dacplushd.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-digi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hifiberry-digi-pro.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/highperi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hy28a.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hy28b.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/hy28b-2017.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i-sabre-q2m.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-bcm2708.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-gpio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-mux.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-pwm-pca9685a.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-rtc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-rtc-gpio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c-sensor.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c3.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c5.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2c6.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/i2s-gpio28-31.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ilitek251x.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/imx219.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/imx290.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/imx378.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/imx477.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/imx519.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/iqaudio-codec.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/iqaudio-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/iqaudio-dacplus.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/iqaudio-digi-wm8804-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/iqs550.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/irs1125.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/jedec-spi-nor.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/justboom-both.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/justboom-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/justboom-digi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ltc294x.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/max98357a.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/maxtherm.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mbed-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp23017.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp23s17.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp2515.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp2515-can0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp2515-can1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp251xfd.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp3008.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp3202.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mcp342x.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/media-center.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/merus-amp.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart3.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/midi-uart5.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/minipitft13.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/miniuart-bt.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mipi-dbi-spi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mlx90640.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mmc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mpu6050.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/mz61581.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ov2311.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ov5647.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ov7251.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ov9281.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/papirus.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pca953x.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pcie-32bit-dma.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pibell.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pifacedigital.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pifi-40.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pifi-dac-hd.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pifi-dac-zero.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pifi-mini-210.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/piglow.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/piscreen.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/piscreen2r.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pisound.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pitft22.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pitft28-capacitive.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pitft28-resistive.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pitft35-resistive.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pps-gpio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pwm.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pwm-2chan.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/pwm-ir-tx.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/qca7000.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/qca7000-uart0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rotary-encoder.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-backlight.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-cirrus-wm5102.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-dac.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-display.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-ft5406.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-poe.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-poe-plus.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-proto.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-sense.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpi-tv.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rpivid-v4l2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/rra-digidac1-wm8741-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sainsmart18.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sc16is750-i2c.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sc16is752-i2c.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sc16is752-spi0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sc16is752-spi1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sdhost.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sdio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/seeed-can-fd-hat-v1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/seeed-can-fd-hat-v2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sh1106-spi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/si446x-spi0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/smi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/smi-dev.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/smi-nand.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi-gpio35-39.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi-gpio40-45.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi-rtc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi0-0cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi0-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi0-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi1-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi1-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi1-3cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi2-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi2-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi2-3cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi3-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi3-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi4-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi4-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi5-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi5-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi6-1cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/spi6-2cs.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ssd1306.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ssd1306-spi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ssd1331-spi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ssd1351-spi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/superaudioboard.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/sx150x.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/tc358743.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/tc358743-audio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/tinylcd35.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/tpm-slb9670.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart0.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart1.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart3.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/uart5.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/udrc.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/ugreen-dabboard.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/upstream.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/upstream-pi4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-fkms-v3d.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-fkms-v3d-pi4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dpi-generic.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dpi-hyperpixel2r.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dpi-hyperpixel4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dpi-hyperpixel4sq.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dpi-panel.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dsi-7inch.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dsi-lt070me05000.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-kippah-7inch.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-v3d.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-v3d-pi4.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vc4-kms-vga666.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vga666.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/vl805.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/w1-gpio.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/w1-gpio-pullup.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/w5500.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/waveshare-can-fd-hat-mode-a.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/waveshare-can-fd-hat-mode-b.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/wittypi.dtbo dtbs-with-symbols> DTCO arch/arm64/boot/dts/overlays/wm8960-soundcard.dtbo dtbs-with-symbols> DTC arch/arm64/boot/dts/overlays/overlay_map.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/apq8016-sbc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/apq8094-sony-xperia-kitakami-karin_windy.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/apq8096-db820c.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/apq8096-ifc6640.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/ipq6018-cp01-c1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/ipq8074-hk01.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/ipq8074-hk10-c1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/ipq8074-hk10-c2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-alcatel-idol347.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-asus-z00l.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-huawei-g7.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-longcheer-l8150.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-longcheer-l8910.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-samsung-a3u-eur.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-samsung-a5u-eur.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8916-wingtech-wt88047.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8992-bullhead-rev-101.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8992-msft-lumia-octagon-talkman.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8992-xiaomi-libra.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-angler-rev-101.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-msft-lumia-octagon-cityman.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami-ivy.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami-karin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami-satsuki.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami-sumire.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8994-sony-xperia-kitakami-suzuran.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-pmi8996-sony-xperia-tone-dora.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-pmi8996-sony-xperia-tone-kagura.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-pmi8996-sony-xperia-tone-keyaki.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone-dora.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone-kagura.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8996-sony-xperia-tone-keyaki.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-asus-novago-tp370ql.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-hp-envy-x2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-lenovo-miix-630.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-oneplus-cheeseburger.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/msm8998-oneplus-dumpling.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/qcs404-evb-1000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/qcs404-evb-4000.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sa8155p-adp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-idp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r1-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-coachz-r3-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-kb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r1-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-kb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-r3-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r1-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r2-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-pompom-r3-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7180-trogdor-r1-lte.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7280-idp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sc7280-idp2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm630-sony-xperia-ganges-kirin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-discovery.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-pioneer.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm630-sony-xperia-nile-voyager.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm636-sony-xperia-ganges-mermaid.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm660-xiaomi-lavender.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-cheza-r1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-cheza-r2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-cheza-r3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-db845c.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-oneplus-enchilada.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-oneplus-fajita.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm845-xiaomi-beryllium.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sdm850-lenovo-yoga-c630.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm6125-sony-xperia-seine-pdx201.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8150-hdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8150-microsoft-surface-duo.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8150-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-bahamut.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8150-sony-xperia-kumano-griffin.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8250-hdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8250-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx203.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8250-sony-xperia-edo-pdx206.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8350-hdk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/qcom/sm8350-mtp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-beacon-rzg2m-kit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-ex.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-ex-idk-1110wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-ex-mipi-2.1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-rev2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-rev2-ex.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774a1-hihope-rzg2m-rev2-ex-idk-1110wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-beacon-rzg2n-kit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-ex.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-ex-idk-1110wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-ex-mipi-2.1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-rev2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-rev2-ex.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774b1-hihope-rzg2n-rev2-ex-idk-1110wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774c0-cat874.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774c0-ek874.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774c0-ek874-idk-2121wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774c0-ek874-mipi-2.1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774e1-beacon-rzg2h-kit.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774e1-hihope-rzg2h.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774e1-hihope-rzg2h-ex.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774e1-hihope-rzg2h-ex-idk-1110wr.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a774e1-hihope-rzg2h-ex-mipi-2.1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77950-salvator-x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77950-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77950-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77951-salvator-x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77951-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77951-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77951-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77960-salvator-x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77960-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77960-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77960-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77961-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77961-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77961-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77965-salvator-x.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77965-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77965-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77965-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77970-eagle.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77970-v3msk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77980-condor.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77980-v3hsk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77990-ebisu.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a77995-draak.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779a0-falcon.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m1-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m1-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m1-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m3-salvator-xs.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m3-ulcb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r8a779m3-ulcb-kf.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/renesas/r9a07g044l2-smarc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/px30-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/px30-engicam-px30-core-ctouch2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/px30-engicam-px30-core-ctouch2-of10.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/px30-engicam-px30-core-edimm2.2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3308-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3308-roc-cc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3318-a95x-z2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3326-odroid-go2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-a1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-nanopi-r2s.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-rock64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-rock-pi-e.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3328-roc-cc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-evb-act8846.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-geekbox.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-lion-haikou.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-orion-r68-meta.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-px5-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3368-r88.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-evb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-ficus.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-firefly.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-gru-bob.dtb dtbs-with-symbols> arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi:460.3-52: Warning (pci_device_reg): /pcie@f8000000/pcie@0,0:reg: PCI reg address is not configuration space dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-gru-kevin.dtb dtbs-with-symbols> arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi:460.3-52: Warning (pci_device_reg): /pcie@f8000000/pcie@0,0:reg: PCI reg address is not configuration space dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-gru-scarlet-inx.dtb dtbs-with-symbols> arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi:460.3-52: Warning (pci_device_reg): /pcie@f8000000/pcie@0,0:reg: PCI reg address is not configuration space dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-gru-scarlet-kd.dtb dtbs-with-symbols> arch/arm64/boot/dts/rockchip/rk3399-gru.dtsi:460.3-52: Warning (pci_device_reg): /pcie@f8000000/pcie@0,0:reg: PCI reg address is not configuration space dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-hugsun-x99.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-khadas-edge.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-khadas-edge-captain.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-khadas-edge-v.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-kobol-helios64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-leez-p710.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-nanopc-t4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-nanopi-m4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-nanopi-m4b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-nanopi-neo4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-nanopi-r4s.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-orangepi.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-pinebook-pro.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-puma-haikou.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-roc-pc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-roc-pc-mezzanine.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4a.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4b.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rock-pi-4c.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rock960.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rockpro64-v2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-rockpro64.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-sapphire.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399-sapphire-excavator.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3399pro-rock-pi-n10.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/rockchip/rk3568-evb1-v10.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-ld11-global.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-ld11-ref.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-ld20-akebi96.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-ld20-global.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-ld20-ref.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/socionext/uniphier-pxs3-ref.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/sprd/sc9836-openphone.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/sprd/sp9860g-1h10.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/sprd/sp9863a-1h10.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/synaptics/berlin4ct-dmp.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/synaptics/berlin4ct-stb.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-am654-base-board.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-am6528-iot2050-basic.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-am6548-iot2050-advanced.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-j7200-common-proc-board.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-am642-evm.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/ti/k3-am642-sk.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/toshiba/tmpv7708-rm-mbrc.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/avnet-ultra96-rev1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1232-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1254-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1275-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm015-dc1.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm016-dc2.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm017-dc3.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm018-dc4.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zc1751-xm019-dc5.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu100-revC.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu102-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu102-revB.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu102-rev1.0.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu104-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu104-revC.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu106-revA.dtb dtbs-with-symbols> DTC arch/arm64/boot/dts/xilinx/zynqmp-zcu111-revA.dtb dtbs-with-symbols> buildPhase completed in 2 minutes 1 seconds dtbs-with-symbols> installing dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/actions/s700-cubieboard7.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/actions/s900-bubblegum-96.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-amarula-relic.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-bananapi-m64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-nanopi-a64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-oceanic-5205-5inmfd.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-olinuxino.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-olinuxino-emmc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-orangepi-win.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pine64-lts.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pine64-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pine64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinebook.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinephone-1.0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinephone-1.1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinephone-1.2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinetab.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-pinetab-early-adopter.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-sopine-baseboard.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a64-teres-i.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-a100-allwinner-perf1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-bananapi-m2-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-bananapi-m2-plus-v1.2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-emlid-neutis-n5-devboard.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-libretech-all-h3-cc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-libretech-all-h3-it.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-libretech-all-h5-cc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-nanopi-neo2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-nanopi-neo-plus2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-nanopi-r1s-h5.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-orangepi-pc2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-orangepi-prime.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-orangepi-zero-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h5-orangepi-zero-plus2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-beelink-gs1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-orangepi-3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-orangepi-lite2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-orangepi-one-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-pine-h64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-pine-h64-model-b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/allwinner/sun50i-h6-tanix-tx6.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/altera/socfpga_stratix10_socdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/altera/socfpga_stratix10_socdk_nand.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amazon/alpine-v2-evp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amazon/alpine-v3-evp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amd/amd-overdrive.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amd/amd-overdrive-rev-b0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amd/amd-overdrive-rev-b1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amd/husky.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-axg-s400.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12a-sei510.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12a-u200.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12a-x96-max.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-gsking-x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-gtking.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-gtking-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-a311d-khadas-vim3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-s922x-khadas-vim3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-odroid-n2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-odroid-n2-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-g12b-ugoos-am6.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-kii-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-nanopi-k2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-nexbox-a95x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-odroidc2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-p200.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-p201.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-vega-s95-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-vega-s95-meta.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-vega-s95-telos.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-wetek-hub.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxbb-wetek-play2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s805x-libretech-ac.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-hwacom-amazetv.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-khadas-vim.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-libretech-cc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-libretech-cc-v2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-nexbox-a95x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905x-p212.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-mecool-kii-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-p230.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-p231.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-phicomm-n1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-sml5442tw.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s805x-p241.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905w-p281.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905w-tx3-mini.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxl-s905d-libretech-pc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-khadas-vim2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-mecool-kiii-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-minix-neo-u9h.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-nexbox-a1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-q200.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-q201.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-rbox-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-s912-libretech-pc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-vega-s96.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-gxm-wetek-core2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-sm1-bananapi-m5.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-sm1-khadas-vim3l.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-sm1-odroid-c4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-sm1-odroid-hc4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-sm1-sei610.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/amlogic/meson-a1-ad401.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/apm/apm-mustang.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/apm/apm-merlin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/apple/t8103-j274.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/foundation-v8.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/foundation-v8-psci.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/foundation-v8-gicv3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/foundation-v8-gicv3-psci.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/juno.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/juno-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/juno-r2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/rtsm_ve-aemv8a.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/vexpress-v2f-1xv7-ca53x2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/arm/fvp-base-revc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm4908/bcm4906-netgear-r8000p.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm4908/bcm4906-tplink-archer-c2300-v1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm4908/bcm4908-asus-gt-ac5300.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/northstar2/ns2-svk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/northstar2/ns2-xmc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/stingray/bcm958742k.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/stingray/bcm958742t.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/stingray/bcm958802a802x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2711-rpi-400.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2711-rpi-4-b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2837-rpi-3-a-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2837-rpi-3-b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2837-rpi-3-b-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2837-rpi-cm3-io3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2710-rpi-zero-2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2710-rpi-2-b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2710-rpi-3-b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2710-rpi-3-b-plus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2710-rpi-cm3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/broadcom/bcm2711-rpi-cm4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/cavium/thunder-88xx.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/cavium/thunder2-99xx.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/exynos/exynos5433-tm2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/exynos/exynos5433-tm2e.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/exynos/exynos7-espresso.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1012a-frdm.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1012a-frwy.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1012a-oxalis.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1012a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1012a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-kbox-a-230-ls.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-sl28.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-sl28-var1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-sl28-var2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-sl28-var3-ads2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-kontron-sl28-var4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1028a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1043a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1043a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1046a-frwy.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1046a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1046a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1088a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1088a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls1088a-ten64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls2080a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls2080a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls2080a-simu.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls2088a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-ls2088a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-lx2160a-clearfog-cx.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-lx2160a-honeycomb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-lx2160a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-lx2160a-rdb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/fsl-lx2162a-qds.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-beacon-kit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-ddr4-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-icore-mx8mm-ctouch2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-icore-mx8mm-edimm2.2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-kontron-n801x-s.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-nitrogen-r2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-var-som-symphony.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-venice-gw71xx-0x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-venice-gw72xx-0x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-venice-gw73xx-0x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-venice-gw7901.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mm-venice-gw7902.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mn-beacon-kit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mn-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mn-ddr4-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mn-var-som-symphony.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mn-venice-gw7902.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mp-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mp-phyboard-pollux-rdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-evk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-hummingboard-pulse.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-kontron-pitx-imx8m.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-librem5-devkit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-librem5-r2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-librem5-r3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-librem5-r4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-mnt-reform2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-nitrogen.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-phanbell.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-pico-pi.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-thor96.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-zii-ultra-rmb3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8mq-zii-ultra-zest.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8qm-mek.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8qxp-ai_ml.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8qxp-colibri-eval-v3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/imx8qxp-mek.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/freescale/s32v234-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hi3660-hikey960.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hi3670-hikey970.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hi3798cv200-poplar.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hi6220-hikey.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hip05-d02.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hip06-d03.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/hisilicon/hip07-d05.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/intel/socfpga_agilex_socdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/intel/socfpga_agilex_socdk_nand.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/intel/socfpga_n5x_socdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/intel/keembay-evm.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/lg/lg1312-ref.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/lg/lg1313-ref.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-espressobin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-espressobin-emmc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-espressobin-ultra.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-espressobin-v7.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-espressobin-v7-emmc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-turris-mox.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-3720-uDPU.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-7040-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8040-clearfog-gt-8k.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8040-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8040-mcbin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8040-mcbin-singleshot.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8040-puzzle-m801.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/armada-8080-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9130-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9130-db-B.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9131-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9131-db-B.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9132-db.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9132-db-B.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9130-crb-A.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/marvell/cn9130-crb-B.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt2712-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt6755-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt6779-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt6795-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt6797-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt6797-x20-dev.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt7622-rfb1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt7622-bananapi-bpi-r64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8167-pumpkin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8173-elm.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8173-elm-hana.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8173-elm-hana-rev7.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8173-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-burnet.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-damu.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-fennel-sku1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-fennel-sku6.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-fennel14.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-juniper-sku16.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-kappa.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-kenzo.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-willow-sku0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-jacuzzi-willow-sku1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-kakadu.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-kodama-sku16.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-kodama-sku272.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-kodama-sku288.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-kodama-sku32.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-krane-sku0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-kukui-krane-sku176.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8183-pumpkin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8192-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/mediatek/mt8516-pumpkin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra132-norrin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-p2371-0000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-p2371-2180.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-p2571.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-p3450-0000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-smaug.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra210-p2894-0050-a08.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra186-p2771-0000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra186-p3509-0000+p3636-0001.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra194-p2972-0000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra194-p3509-0000+p3668-0000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra194-p3509-0000+p3668-0001.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/nvidia/tegra234-sim-vdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/apq8016-sbc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/apq8094-sony-xperia-kitakami-karin_windy.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/apq8096-db820c.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/apq8096-ifc6640.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/ipq6018-cp01-c1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/ipq8074-hk01.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/ipq8074-hk10-c1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/ipq8074-hk10-c2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-alcatel-idol347.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-asus-z00l.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-huawei-g7.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-longcheer-l8150.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-longcheer-l8910.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-samsung-a3u-eur.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-samsung-a5u-eur.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8916-wingtech-wt88047.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8992-bullhead-rev-101.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8992-msft-lumia-octagon-talkman.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8992-xiaomi-libra.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-angler-rev-101.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-msft-lumia-octagon-cityman.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-sony-xperia-kitakami-ivy.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-sony-xperia-kitakami-karin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-sony-xperia-kitakami-satsuki.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-sony-xperia-kitakami-sumire.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8994-sony-xperia-kitakami-suzuran.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-pmi8996-sony-xperia-tone-dora.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-pmi8996-sony-xperia-tone-kagura.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-pmi8996-sony-xperia-tone-keyaki.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-sony-xperia-tone-dora.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-sony-xperia-tone-kagura.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8996-sony-xperia-tone-keyaki.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-asus-novago-tp370ql.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-hp-envy-x2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-lenovo-miix-630.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-oneplus-cheeseburger.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/msm8998-oneplus-dumpling.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/qcs404-evb-1000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/qcs404-evb-4000.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/qrb5165-rb5.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sa8155p-adp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-idp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-coachz-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-coachz-r1-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-coachz-r3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-coachz-r3-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r1-kb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r1-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r3-kb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-r3-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-limozeen.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-limozeen-nots.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-lazor-limozeen-nots-r4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r1-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r2-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-pompom-r3-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7180-trogdor-r1-lte.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7280-idp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sc7280-idp2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm630-sony-xperia-ganges-kirin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm630-sony-xperia-nile-discovery.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm630-sony-xperia-nile-pioneer.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm630-sony-xperia-nile-voyager.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm636-sony-xperia-ganges-mermaid.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm660-xiaomi-lavender.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-cheza-r1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-cheza-r2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-cheza-r3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-db845c.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-oneplus-enchilada.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-oneplus-fajita.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm845-xiaomi-beryllium.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sdm850-lenovo-yoga-c630.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm6125-sony-xperia-seine-pdx201.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8150-hdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8150-microsoft-surface-duo.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8150-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8150-sony-xperia-kumano-bahamut.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8150-sony-xperia-kumano-griffin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8250-hdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8250-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8250-sony-xperia-edo-pdx203.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8250-sony-xperia-edo-pdx206.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8350-hdk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/qcom/sm8350-mtp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-beacon-rzg2m-kit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-ex.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-ex-idk-1110wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-ex-mipi-2.1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-rev2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-rev2-ex.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774a1-hihope-rzg2m-rev2-ex-idk-1110wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-beacon-rzg2n-kit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-ex.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-ex-idk-1110wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-ex-mipi-2.1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-rev2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-rev2-ex.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774b1-hihope-rzg2n-rev2-ex-idk-1110wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774c0-cat874.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774c0-ek874.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774c0-ek874-idk-2121wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774c0-ek874-mipi-2.1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774e1-beacon-rzg2h-kit.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774e1-hihope-rzg2h.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774e1-hihope-rzg2h-ex.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774e1-hihope-rzg2h-ex-idk-1110wr.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a774e1-hihope-rzg2h-ex-mipi-2.1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77950-salvator-x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77950-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77950-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77951-salvator-x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77951-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77951-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77951-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77960-salvator-x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77960-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77960-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77960-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77961-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77961-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77961-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77965-salvator-x.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77965-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77965-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77965-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77970-eagle.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77970-v3msk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77980-condor.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77980-v3hsk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77990-ebisu.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a77995-draak.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779a0-falcon.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m1-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m1-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m1-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m3-salvator-xs.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m3-ulcb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r8a779m3-ulcb-kf.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/renesas/r9a07g044l2-smarc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/px30-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/px30-engicam-px30-core-ctouch2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/px30-engicam-px30-core-ctouch2-of10.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/px30-engicam-px30-core-edimm2.2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3308-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3308-roc-cc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3318-a95x-z2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3326-odroid-go2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-a1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-nanopi-r2s.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-rock64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-rock-pi-e.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3328-roc-cc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-evb-act8846.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-geekbox.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-lion-haikou.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-orion-r68-meta.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-px5-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3368-r88.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-evb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-ficus.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-firefly.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-gru-bob.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-gru-kevin.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-gru-scarlet-inx.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-gru-scarlet-kd.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-hugsun-x99.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-khadas-edge.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-khadas-edge-captain.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-khadas-edge-v.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-kobol-helios64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-leez-p710.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-nanopc-t4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-nanopi-m4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-nanopi-m4b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-nanopi-neo4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-nanopi-r4s.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-orangepi.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-pinebook-pro.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-puma-haikou.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-roc-pc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-roc-pc-mezzanine.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rock-pi-4a.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rock-pi-4b.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rock-pi-4c.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rock960.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rockpro64-v2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-rockpro64.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-sapphire.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399-sapphire-excavator.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3399pro-rock-pi-n10.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/rockchip/rk3568-evb1-v10.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-ld11-global.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-ld11-ref.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-ld20-akebi96.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-ld20-global.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-ld20-ref.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/socionext/uniphier-pxs3-ref.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/sprd/sc9836-openphone.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/sprd/sp9860g-1h10.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/sprd/sp9863a-1h10.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/synaptics/berlin4ct-dmp.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/synaptics/berlin4ct-stb.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-am654-base-board.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-am6528-iot2050-basic.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-am6548-iot2050-advanced.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-j721e-common-proc-board.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-j7200-common-proc-board.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-am642-evm.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/ti/k3-am642-sk.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/toshiba/tmpv7708-rm-mbrc.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/avnet-ultra96-rev1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1232-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1254-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1275-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1751-xm015-dc1.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1751-xm016-dc2.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1751-xm017-dc3.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1751-xm018-dc4.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zc1751-xm019-dc5.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu100-revC.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu102-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu102-revB.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu102-rev1.0.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu104-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu104-revC.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu106-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/xilinx/zynqmp-zcu111-revA.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/overlay_map.dtb dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/act-led.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adafruit-st7735r.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adafruit18.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adau1977-adc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adau7002-simple.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ads1015.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ads1115.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ads7846.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adv7282m.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/adv728x-m.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/akkordion-iqdacplus.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-boss-dac-pcm512x-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-boss2-dac-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-digione.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-katana-dac-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-piano-dac-pcm512x-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/allo-piano-dac-plus-pcm512x-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/anyspi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/apds9960.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/applepi-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/at86rf233.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audioinjector-addons.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audioinjector-isolated-soundcard.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audioinjector-ultra.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audioinjector-wm8731-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audiosense-pi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/audremap.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/balena-fin.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/cap1106.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/chipdip-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/cma.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/cutiepi-panel.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dht11.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dionaudio-loco.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dionaudio-loco-v2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/disable-bt.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/disable-wifi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dpi18.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dpi18cpadhi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dpi24.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/draws.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dwc-otg.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/dwc2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/edt-ft5406.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/enc28j60.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/enc28j60-spi2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/exc3000.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/fbtft.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/fe-pi-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/fsm-demo.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ghost-amp.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/goodix.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/googlevoicehat-soundcard.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-fan.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-ir.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-ir-tx.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-key.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-led.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-no-bank0-irq.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-no-irq.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-poweroff.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/gpio-shutdown.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hd44780-lcd.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hdmi-backlight-hwhack-gpio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-amp.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-amp100.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dacplus.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dacplusadc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dacplusadcpro.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dacplusdsp.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-dacplushd.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-digi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hifiberry-digi-pro.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/highperi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hy28a.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hy28b.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/hy28b-2017.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i-sabre-q2m.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-bcm2708.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-gpio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-mux.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-pwm-pca9685a.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-rtc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-rtc-gpio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c-sensor.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c3.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c5.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2c6.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/i2s-gpio28-31.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ilitek251x.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/imx219.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/imx290.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/imx378.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/imx477.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/imx519.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/iqaudio-codec.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/iqaudio-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/iqaudio-dacplus.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/iqaudio-digi-wm8804-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/iqs550.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/irs1125.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/jedec-spi-nor.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/justboom-both.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/justboom-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/justboom-digi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ltc294x.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/max98357a.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/maxtherm.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mbed-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp23017.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp23s17.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp2515.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp2515-can0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp2515-can1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp251xfd.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp3008.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp3202.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mcp342x.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/media-center.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/merus-amp.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart3.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/midi-uart5.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/minipitft13.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/miniuart-bt.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mipi-dbi-spi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mlx90640.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mmc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mpu6050.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/mz61581.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ov2311.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ov5647.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ov7251.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ov9281.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/papirus.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pca953x.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pcie-32bit-dma.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pibell.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pifacedigital.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pifi-40.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pifi-dac-hd.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pifi-dac-zero.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pifi-mini-210.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/piglow.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/piscreen.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/piscreen2r.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pisound.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pitft22.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pitft28-capacitive.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pitft28-resistive.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pitft35-resistive.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pps-gpio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pwm.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pwm-2chan.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/pwm-ir-tx.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/qca7000.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/qca7000-uart0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rotary-encoder.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-backlight.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-cirrus-wm5102.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-dac.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-display.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-ft5406.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-poe.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-poe-plus.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-proto.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-sense.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpi-tv.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rpivid-v4l2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/rra-digidac1-wm8741-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sainsmart18.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sc16is750-i2c.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sc16is752-i2c.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sc16is752-spi0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sc16is752-spi1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sdhost.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sdio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/seeed-can-fd-hat-v1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/seeed-can-fd-hat-v2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sh1106-spi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/si446x-spi0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/smi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/smi-dev.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/smi-nand.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi-gpio35-39.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi-gpio40-45.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi-rtc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi0-0cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi0-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi0-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi1-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi1-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi1-3cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi2-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi2-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi2-3cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi3-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi3-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi4-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi4-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi5-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi5-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi6-1cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/spi6-2cs.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ssd1306.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ssd1306-spi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ssd1331-spi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ssd1351-spi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/superaudioboard.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/sx150x.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/tc358743.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/tc358743-audio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/tinylcd35.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/tpm-slb9670.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart0.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart1.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart3.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/uart5.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/udrc.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/ugreen-dabboard.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/upstream.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/upstream-pi4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-fkms-v3d.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-fkms-v3d-pi4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dpi-generic.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dpi-hyperpixel2r.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dpi-hyperpixel4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dpi-hyperpixel4sq.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dpi-panel.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dsi-7inch.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dsi-lt070me05000.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-dsi-lt070me05000-v2.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-kippah-7inch.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-v3d.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-v3d-pi4.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vc4-kms-vga666.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vga666.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/vl805.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/w1-gpio.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/w1-gpio-pullup.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/w5500.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/waveshare-can-fd-hat-mode-a.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/waveshare-can-fd-hat-mode-b.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/wittypi.dtbo dtbs-with-symbols> INSTALL /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols/dtbs/overlays/wm8960-soundcard.dtbo dtbs-with-symbols> post-installation fixup dtbs-with-symbols> shrinking RPATHs of ELF executables and libraries in /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols dtbs-with-symbols> strip is /nix/store/qhfjqp84rgly2h77c0av2gvi893dwb7p-gcc-wrapper-9.3.0/bin/strip dtbs-with-symbols> patching script interpreter paths in /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols dtbs-with-symbols> checking for references to /build/ in /nix/store/94773gzx4hsa48cvpipcxkyzj06i50fc-dtbs-with-symbols... dtbs-filtered> ./broadcom -> /nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom dtbs-filtered> './broadcom/bcm2711-rpi-400.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-400.dtb' dtbs-filtered> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-4-b.dtb' dtbs-filtered> './broadcom/bcm2711-rpi-cm4.dtb' -> '/nix/store/lr2jh1v4ra9vjlsasy9drss5xj04spac-dtbs-filtered/./broadcom/bcm2711-rpi-cm4.dtb' device-tree-overlays> ./broadcom -> /nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom device-tree-overlays> './broadcom/bcm2711-rpi-400.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-400.dtb' device-tree-overlays> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-4-b.dtb' device-tree-overlays> './broadcom/bcm2711-rpi-cm4.dtb' -> '/nix/store/iy7n6hsniv5in9d70x0ahv95hjpzkhg9-device-tree-overlays/./broadcom/bcm2711-rpi-cm4.dtb' device-tree-overlays> Applying overlay rpi-poe-overlay to bcm2711-rpi-400.dtb device-tree-overlays> Failed to apply '/nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo': FDT_ERR_NOTFOUND ```
sorki commented 2 years ago

So is this meant to apply to rpi-400? Sadly FDT_ERR_NOTFOUND is sort-of a catch all error.

06kellyjac commented 2 years ago

IDK, I just care about rpi-4-b I think, I guess I can change the filter to hardware.deviceTree.filter = "bcm2711-rpi-4-b.dtb";? I'm not seeing a way to set an individual overlay to have a different filter


Edit: even just applying it to 4-b it's getting upset:

tbs-filtered> ./broadcom -> /nix/store/m70x6ncf157p0hp5viwz9z8z36r8gdx9-dtbs-filtered/./broadcom
dtbs-filtered> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/m70x6ncf157p0hp5viwz9z8z36r8gdx9-dtbs-filtered/./broadcom/bcm2711-rpi-4-b.dtb'
device-tree-overlays> ./broadcom -> /nix/store/qvjw2lr8wyg9jkymm2bgv1g825zf60jc-device-tree-overlays/./broadcom
device-tree-overlays> './broadcom/bcm2711-rpi-4-b.dtb' -> '/nix/store/qvjw2lr8wyg9jkymm2bgv1g825zf60jc-device-tree-overlays/./broadcom/bcm2711-rpi-4-b.dtb'
device-tree-overlays> Applying overlay rpi-poe-overlay to bcm2711-rpi-4-b.dtb
device-tree-overlays> Failed to apply '/nix/store/r28rra8q081qirjx227m3rjgqp42cv2y-rpi-poe-overlay-dtbo': FDT_ERR_NOTFOUND
sorki commented 2 years ago

Yes, I hoped more specific filter would help. I'm out of ideas at this point :confused:

06kellyjac commented 2 years ago

mmm. I had a look to see if fdtoverlay had a verbose output that could help. It has a verbose flag but it does next to nothign

Chatting in the matrix there's a lot of stuff upstreamed into modern mainline like: https://github.com/torvalds/linux/blob/v5.15/drivers/pwm/pwm-raspberrypi-poe.c etc but applying against that didn't work either :upside_down_face:

06kellyjac commented 2 years ago

cc @samueldr @Mic92 @walkah any advice here? Is there some other changes that need to be made to the upstream dts to make it work?

sbourdeauducq commented 2 years ago

On 22.05, even with the workaround I posted, it now fails with:

Failed to apply '/nix/store/fg6al7jd2l69jy8glphbl6h9cy4za661-raspberrypi-firmware-1.20220331/share/raspberrypi/boot/overlays/rpi-poe.dtbo': FDT_ERR_NOTFOUND
sbourdeauducq commented 2 years ago

If you're tired of this mess and just want the damn fan to spin, you can simply short-circuit the MOSFET at the top-right: image

collinarnett commented 1 year ago

I just wanted to chime in with my experience on the same topic. In my case I just want to use an i2s hat which seems straight forward enough; however I was getting the same FTD_OVERLAY error as everyone else here.

I documented my experience here https://discourse.nixos.org/t/fdt-err-notfound-when-trying-to-apply-device-tree-overlay-on-raspberry-pi-4/19650

ipetkov commented 1 year ago

I'm not sure if #205595 will fix the original issue but it may help

nixos-discourse commented 1 year ago

This issue has been mentioned on NixOS Discourse. There might be relevant details there:

https://discourse.nixos.org/t/raspberry-pi-and-config-txt/24529/3

nixos-discourse commented 1 year ago

This issue has been mentioned on NixOS Discourse. There might be relevant details there:

https://discourse.nixos.org/t/raspberry-pi-compute-module-3-compatibility/16210/11

devoneonone commented 8 months ago

Excuse me all of you that will be take some minutes to say if that, I think yes. AN OS TO Install on one dev board PINE A64 lts v2, which ones we can access with programmes have access easily to some many GPio's ? Thanks so much...