├── .gitignore ├── README.md ├── README_cn.md ├── clean.sh ├── files ├── linux-headers-5.10-bin_arm64 │ └── scripts │ │ ├── asn1_compiler │ │ ├── basic │ │ └── fixdep │ │ ├── dtc │ │ └── dtc │ │ ├── extract-cert │ │ ├── genksyms │ │ └── genksyms │ │ ├── kallsyms │ │ ├── kconfig │ │ └── conf │ │ ├── mod │ │ ├── mk_elfconfig │ │ └── modpost │ │ ├── recordmcount │ │ ├── selinux │ │ ├── genheaders │ │ │ └── genheaders │ │ └── mdp │ │ │ └── mdp │ │ ├── sorttable │ │ └── unifdef └── logo.jpg ├── fusing.sh ├── mk-emmc-image.sh ├── mk-sd-image.sh ├── out └── .gitignore ├── prebuilt ├── MiniLoaderAll.bin ├── boot.img ├── boot │ ├── logo.bmp │ └── logo_kernel.bmp ├── dtbo-plain.img ├── dtbo.img ├── firmware │ ├── files │ │ ├── etc │ │ │ └── firmware │ │ │ │ ├── 4343A0.hcd │ │ │ │ ├── BCM20710A1.hcd │ │ │ │ ├── BCM4330B1.hcd │ │ │ │ ├── BCM4335C0.hcd │ │ │ │ ├── BCM43430A1.hcd │ │ │ │ ├── BCM4343A0 26M.hcd │ │ │ │ ├── BCM4343A0.hcd │ │ │ │ ├── BCM4343A1.hcd │ │ │ │ ├── BCM4343B0.hcd │ │ │ │ ├── BCM4345C0.hcd │ │ │ │ ├── BCM4345C0_ap.hcd │ │ │ │ ├── BCM4345C5.hcd │ │ │ │ ├── BCM4354A2.hcd │ │ │ │ ├── BCM4356A2.hcd │ │ │ │ ├── BCM4359C0.hcd │ │ │ │ ├── BCM4362A2.hcd │ │ │ │ ├── awnb108.hcd │ │ │ │ ├── bcm20710a1.hcd │ │ │ │ ├── bcm20710a1_24M.hcd │ │ │ │ ├── bcm20710a1_26M.hcd │ │ │ │ ├── bcm2076b1.hcd │ │ │ │ ├── bcm40183b2.hcd │ │ │ │ ├── bcm43241b4.hcd │ │ │ │ ├── bcm4329.hcd │ │ │ │ ├── bcm43341b0.hcd │ │ │ │ ├── bcm4339a0.hcd │ │ │ │ ├── bcm43438a0.hcd │ │ │ │ ├── bcm43438a1.hcd │ │ │ │ ├── bcm4354a1.hcd │ │ │ │ ├── nh660.hcd │ │ │ │ ├── rk903.hcd │ │ │ │ └── rk903_26M.hcd │ │ ├── system │ │ │ ├── etc │ │ │ │ └── firmware │ │ │ │ │ ├── 4343A0.hcd │ │ │ │ │ ├── BCM4330B1.hcd │ │ │ │ │ ├── BCM4335C0.hcd │ │ │ │ │ ├── BCM43430A1.hcd │ │ │ │ │ ├── BCM43430B0.hcd │ │ │ │ │ ├── BCM4343A1.hcd │ │ │ │ │ ├── BCM4343B0.hcd │ │ │ │ │ ├── BCM4345C0.hcd │ │ │ │ │ ├── BCM4345C0_ap.hcd │ │ │ │ │ ├── BCM4345C5.hcd │ │ │ │ │ ├── BCM4350C0.hcd │ │ │ │ │ ├── BCM4354A2.hcd │ │ │ │ │ ├── BCM4356A2.hcd │ │ │ │ │ ├── BCM4359C0.hcd │ │ │ │ │ ├── BCM4362A2.hcd │ │ │ │ │ ├── awnb108.hcd │ │ │ │ │ ├── bcm20710a1.hcd │ │ │ │ │ ├── bcm20710a1_24M.hcd │ │ │ │ │ ├── bcm20710a1_26M.hcd │ │ │ │ │ ├── bcm2076b1.hcd │ │ │ │ │ ├── bcm40183b2.hcd │ │ │ │ │ ├── bcm43241b4.hcd │ │ │ │ │ ├── bcm4329.hcd │ │ │ │ │ ├── bcm43341b0.hcd │ │ │ │ │ ├── bcm4339a0.hcd │ │ │ │ │ ├── bcm43438a0.hcd │ │ │ │ │ ├── bcm43438a1.hcd │ │ │ │ │ ├── bcm4354a1.hcd │ │ │ │ │ ├── clm_bcm4359c51a2_ag.blob │ │ │ │ │ ├── clm_bcm43752a2_ag.blob │ │ │ │ │ ├── clm_bcm43752a2_pcie_ag.blob │ │ │ │ │ ├── fw_awnb108.bin │ │ │ │ │ ├── fw_awnb108_ap.bin │ │ │ │ │ ├── fw_bcm40181a2.bin │ │ │ │ │ ├── fw_bcm40181a2_apsta.bin │ │ │ │ │ ├── fw_bcm40181a2_mfg.bin │ │ │ │ │ ├── fw_bcm40183b2.bin │ │ │ │ │ ├── fw_bcm40183b2_ag.bin │ │ │ │ │ ├── fw_bcm43013c1_ag.bin │ │ │ │ │ ├── fw_bcm43013c1_ag_mfg.bin │ │ │ │ │ ├── fw_bcm43241b4_ag.bin │ │ │ │ │ ├── fw_bcm4330.bin │ │ │ │ │ ├── fw_bcm43341b0_ag.bin │ │ │ │ │ ├── fw_bcm4334b1_ag.bin │ │ │ │ │ ├── fw_bcm4339a0_ag.bin │ │ │ │ │ ├── fw_bcm4339a0_ag_mfg.bin │ │ │ │ │ ├── fw_bcm43436b0.bin │ │ │ │ │ ├── fw_bcm43436b0_apsta.bin │ │ │ │ │ ├── fw_bcm43436b0_mfg.bin │ │ │ │ │ ├── fw_bcm43438a0.bin │ │ │ │ │ ├── fw_bcm43438a1.bin │ │ │ │ │ ├── fw_bcm43438a1_apsta.bin │ │ │ │ │ ├── fw_bcm43438a1_mfg.bin │ │ │ │ │ ├── fw_bcm43455c0_ag.bin │ │ │ │ │ ├── fw_bcm43455c0_ag_mfg.bin │ │ │ │ │ ├── fw_bcm43456c5_ag.bin │ │ │ │ │ ├── fw_bcm43456c5_ag_mfg.bin │ │ │ │ │ ├── fw_bcm4354a1_ag.bin │ │ │ │ │ ├── fw_bcm4354a1_ag_mfg.bin │ │ │ │ │ ├── fw_bcm4356a2_ag.bin │ │ │ │ │ ├── fw_bcm4356a2_ag_mfg.bin │ │ │ │ │ ├── fw_bcm4359c0_ag.bin │ │ │ │ │ ├── fw_bcm4359c0_ag_mfg.bin │ │ │ │ │ ├── fw_bcm4359c51a2_ag.bin │ │ │ │ │ ├── fw_bcm4359c51a2_ag_apsta.bin │ │ │ │ │ ├── fw_bcm43752a2_ag.bin │ │ │ │ │ ├── fw_bcm43752a2_ag_mfg.bin │ │ │ │ │ ├── fw_bcm43752a2_pcie_ag.bin │ │ │ │ │ ├── fw_bcm43752a2_pcie_ag_mfg.bin │ │ │ │ │ ├── fw_cyw43438.bin │ │ │ │ │ ├── fw_cyw43455.bin │ │ │ │ │ ├── nh660.hcd │ │ │ │ │ ├── null.hcd │ │ │ │ │ ├── nvram_4330.txt │ │ │ │ │ ├── nvram_4330_oob.txt │ │ │ │ │ ├── nvram_AP6210.txt │ │ │ │ │ ├── nvram_AP6210_24M.txt │ │ │ │ │ ├── nvram_AP6234.txt │ │ │ │ │ ├── nvram_AP6275P.txt │ │ │ │ │ ├── nvram_AP6330.txt │ │ │ │ │ ├── nvram_AP6335.txt │ │ │ │ │ ├── nvram_AP6441.txt │ │ │ │ │ ├── nvram_AP6476.txt │ │ │ │ │ ├── nvram_AP6493.txt │ │ │ │ │ ├── nvram_B23.txt │ │ │ │ │ ├── nvram_RK901.txt │ │ │ │ │ ├── nvram_RK903.cal │ │ │ │ │ ├── nvram_RK903.txt │ │ │ │ │ ├── nvram_RK903_26M.cal │ │ │ │ │ ├── nvram_ap6181.txt │ │ │ │ │ ├── nvram_ap6212.txt │ │ │ │ │ ├── nvram_ap6212a.txt │ │ │ │ │ ├── nvram_ap6212a_ap.txt │ │ │ │ │ ├── nvram_ap6212a_cy.txt │ │ │ │ │ ├── nvram_ap6233f.txt │ │ │ │ │ ├── nvram_ap6236.txt │ │ │ │ │ ├── nvram_ap6255.txt │ │ │ │ │ ├── nvram_ap6256.txt │ │ │ │ │ ├── nvram_ap6275s.txt │ │ │ │ │ ├── nvram_ap62x2.txt │ │ │ │ │ ├── nvram_ap6354.txt │ │ │ │ │ ├── nvram_ap6356.txt │ │ │ │ │ ├── nvram_ap6356s.txt │ │ │ │ │ ├── nvram_ap6398s.txt │ │ │ │ │ ├── nvram_ap6398sv.txt │ │ │ │ │ ├── nvram_ap6452.txt │ │ │ │ │ ├── nvram_awnb108.txt │ │ │ │ │ ├── nvram_azw256.txt │ │ │ │ │ ├── nvram_azw372.txt │ │ │ │ │ ├── nvram_cyw43438.txt │ │ │ │ │ ├── nvram_cyw43455.txt │ │ │ │ │ ├── rk903.hcd │ │ │ │ │ ├── rk903_26M.hcd │ │ │ │ │ ├── rk912_fw.bin │ │ │ │ │ ├── rk912_patch.bin │ │ │ │ │ ├── rk912_patch_cal.bin │ │ │ │ │ ├── wifi_efuse_8189e.map │ │ │ │ │ ├── wifi_efuse_8723bs-vq0.map │ │ │ │ │ ├── wifi_efuse_8723cs.map │ │ │ │ │ └── wifi_efuse_8723ds.map │ │ │ └── vendor │ │ │ │ └── firmware │ │ │ │ └── bcm4339a0.hcd │ │ └── usr │ │ │ └── lib │ │ │ └── firmware │ │ │ ├── brcm │ │ │ ├── brcmfmac43455-sdio.bin │ │ │ ├── brcmfmac43455-sdio.friendlyelec,nanopi-neo3s.txt │ │ │ ├── brcmfmac43455-sdio.friendlyelec,nanopi-r2.txt │ │ │ ├── brcmfmac43455-sdio.txt │ │ │ ├── brcmfmac43456-sdio.bin │ │ │ ├── brcmfmac43456-sdio.friendlyelec,nanopi-neo3s.txt │ │ │ └── brcmfmac43456-sdio.txt │ │ │ ├── intel │ │ │ ├── ibt-20-1-3.ddc │ │ │ └── ibt-20-1-3.sfi │ │ │ ├── iwlwifi-cc-a0-59.ucode │ │ │ ├── iwlwifi-ty-a0-gf-a0-59.ucode │ │ │ ├── iwlwifi-ty-a0-gf-a0-72.ucode │ │ │ ├── iwlwifi-ty-a0-gf-a0.pnvm │ │ │ ├── mediatek │ │ │ ├── BT_RAM_CODE_MT7922_1_1_hdr.bin │ │ │ ├── BT_RAM_CODE_MT7961_1_2_hdr.bin │ │ │ ├── WIFI_MT7922_patch_mcu_1_1_hdr.bin │ │ │ ├── WIFI_MT7961_patch_mcu_1_2_hdr.bin │ │ │ ├── WIFI_RAM_CODE_MT7922_1.bin │ │ │ ├── WIFI_RAM_CODE_MT7961_1.bin │ │ │ ├── mt7662u.bin │ │ │ └── mt7662u_rom_patch.bin │ │ │ ├── mt7662.bin │ │ │ ├── mt7662_rom_patch.bin │ │ │ ├── rockchip │ │ │ └── dptx.bin │ │ │ ├── rtl_bt │ │ │ ├── rtl8723b_config │ │ │ ├── rtl8723b_config.bin │ │ │ ├── rtl8723b_fw │ │ │ ├── rtl8723b_fw.bin │ │ │ ├── rtl8761b_config.bin │ │ │ ├── rtl8761b_fw.bin │ │ │ ├── rtl8761bu_config.bin │ │ │ ├── rtl8761bu_fw.bin │ │ │ ├── rtl8821c_config.bin │ │ │ ├── rtl8821c_fw.bin │ │ │ ├── rtl8821cs_config.bin │ │ │ ├── rtl8821cs_fw.bin │ │ │ ├── rtl8822cs_config.bin │ │ │ ├── rtl8822cs_fw.bin │ │ │ ├── rtl8822cu_config.bin │ │ │ ├── rtl8822cu_fw.bin │ │ │ ├── rtl8851bu_config.bin │ │ │ └── rtl8851bu_fw.bin │ │ │ ├── rtl_nic │ │ │ ├── rtl8105e-1.fw │ │ │ ├── rtl8106e-1.fw │ │ │ ├── rtl8106e-2.fw │ │ │ ├── rtl8107e-1.fw │ │ │ ├── rtl8107e-2.fw │ │ │ ├── rtl8125a-3.fw │ │ │ ├── rtl8125b-1.fw │ │ │ ├── rtl8125b-2.fw │ │ │ ├── rtl8153a-2.fw │ │ │ ├── rtl8153a-3.fw │ │ │ ├── rtl8153a-4.fw │ │ │ ├── rtl8153b-2.fw │ │ │ ├── rtl8168d-1.fw │ │ │ ├── rtl8168d-2.fw │ │ │ ├── rtl8168e-1.fw │ │ │ ├── rtl8168e-2.fw │ │ │ ├── rtl8168e-3.fw │ │ │ ├── rtl8168f-1.fw │ │ │ ├── rtl8168f-2.fw │ │ │ ├── rtl8168fp-3.fw │ │ │ ├── rtl8168g-1.fw │ │ │ ├── rtl8168g-2.fw │ │ │ ├── rtl8168g-3.fw │ │ │ ├── rtl8168h-1.fw │ │ │ ├── rtl8168h-2.fw │ │ │ ├── rtl8402-1.fw │ │ │ ├── rtl8411-1.fw │ │ │ └── rtl8411-2.fw │ │ │ └── rtw88 │ │ │ ├── rtw8822b_fw.bin │ │ │ ├── rtw8822c_fw.bin │ │ │ └── rtw8822c_wow_fw.bin │ ├── files2 │ │ └── usr │ │ │ └── lib │ │ │ └── firmware │ │ │ ├── regulatory.db │ │ │ └── regulatory.db.p7s │ └── install.sh ├── idbloader.img ├── misc.img ├── parameter-opt.template ├── parameter-plain.txt ├── parameter.template └── uboot.img ├── test ├── kernel-patches │ └── 0001-disable-PCIe-func-of-the-cm3588.patch ├── test-big-rootfs-img.sh ├── test-btrfs-rootfs.sh ├── test-build-all-images.sh ├── test-build-kernel-header-deb.sh ├── test-custom-bootargs.sh ├── test-custom-logo.sh ├── test-custom-rootfs.sh ├── test-update-kernel-for-cm3588-no-pcie.sh ├── test-update-kernel-for-debiancore.sh ├── test-update-kernel-for-friendlywrt23.sh ├── test-update-kernel-for-linux-lowlatency.sh ├── test-update-kernel-for-ubuntu-jammy-minimal.sh └── test-update-uboot.sh └── tools ├── aarch64 ├── mke2fs ├── mkkrnlimg ├── resource_tool └── sd_update ├── extract-rootfs-tar.sh ├── fakeroot-ng ├── fill_img_to_eflasher ├── fill_prebuilt_uboot_bin.sh ├── generate-partmap-txt.sh ├── get_pkg_filename.sh ├── get_rom.sh ├── global.sh ├── make-img.sh ├── mke2fs ├── mke2fs.conf ├── mkkrnlimg ├── prepare_friendlywrt_kernelmodules.sh ├── resource_tool ├── sd_tune2fs.sh ├── sd_update ├── setup_boot_and_rootfs.sh ├── update_kernel_bin_to_img.sh ├── update_prebuilt.sh ├── update_uboot_bin.sh └── util.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/README_cn.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo su -c "rm -rf out/*" 4 | -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/asn1_compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/asn1_compiler -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/basic/fixdep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/basic/fixdep -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/dtc/dtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/dtc/dtc -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/extract-cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/extract-cert -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/genksyms/genksyms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/genksyms/genksyms -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/kallsyms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/kallsyms -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/kconfig/conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/kconfig/conf -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/mod/mk_elfconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/mod/mk_elfconfig -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/mod/modpost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/mod/modpost -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/recordmcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/recordmcount -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/selinux/genheaders/genheaders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/selinux/genheaders/genheaders -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/selinux/mdp/mdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/selinux/mdp/mdp -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/sorttable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/sorttable -------------------------------------------------------------------------------- /files/linux-headers-5.10-bin_arm64/scripts/unifdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/linux-headers-5.10-bin_arm64/scripts/unifdef -------------------------------------------------------------------------------- /files/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/files/logo.jpg -------------------------------------------------------------------------------- /fusing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/fusing.sh -------------------------------------------------------------------------------- /mk-emmc-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/mk-emmc-image.sh -------------------------------------------------------------------------------- /mk-sd-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/mk-sd-image.sh -------------------------------------------------------------------------------- /out/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/out/.gitignore -------------------------------------------------------------------------------- /prebuilt/MiniLoaderAll.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/MiniLoaderAll.bin -------------------------------------------------------------------------------- /prebuilt/boot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/boot.img -------------------------------------------------------------------------------- /prebuilt/boot/logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/boot/logo.bmp -------------------------------------------------------------------------------- /prebuilt/boot/logo_kernel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/boot/logo_kernel.bmp -------------------------------------------------------------------------------- /prebuilt/dtbo-plain.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/dtbo-plain.img -------------------------------------------------------------------------------- /prebuilt/dtbo.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/dtbo.img -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/4343A0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/4343A0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM20710A1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM20710A1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4330B1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4330B1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4335C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4335C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM43430A1.hcd: -------------------------------------------------------------------------------- 1 | bcm43438a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4343A0 26M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4343A0 26M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4343A0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4343A0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4343A1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4343A1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4343B0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4343B0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4345C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4345C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4345C0_ap.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4345C0_ap.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4345C5.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4345C5.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4354A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4354A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4356A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4356A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4359C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4359C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/BCM4362A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/BCM4362A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/awnb108.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/awnb108.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm20710a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm20710a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm20710a1_24M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm20710a1_24M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm20710a1_26M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm20710a1_26M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm2076b1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm2076b1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm40183b2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm40183b2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm43241b4.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm43241b4.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm4329.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm4329.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm43341b0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm43341b0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm4339a0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm4339a0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm43438a0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm43438a0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm43438a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm43438a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/bcm4354a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/bcm4354a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/nh660.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/nh660.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/rk903.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/rk903.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/etc/firmware/rk903_26M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/etc/firmware/rk903_26M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/4343A0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/4343A0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4330B1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4330B1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4335C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4335C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM43430A1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM43430A1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM43430B0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM43430B0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4343A1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4343A1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4343B0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4343B0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4345C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4345C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4345C0_ap.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4345C0_ap.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4345C5.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4345C5.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4350C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4350C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4354A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4354A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4356A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4356A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4359C0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4359C0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/BCM4362A2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/BCM4362A2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/awnb108.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/awnb108.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm20710a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm20710a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm20710a1_24M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm20710a1_24M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm20710a1_26M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm20710a1_26M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm2076b1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm2076b1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm40183b2.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm40183b2.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm43241b4.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm43241b4.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm4329.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm4329.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm43341b0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm43341b0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm4339a0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm4339a0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm43438a0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm43438a0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm43438a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm43438a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/bcm4354a1.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/bcm4354a1.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/clm_bcm4359c51a2_ag.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/clm_bcm4359c51a2_ag.blob -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/clm_bcm43752a2_ag.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/clm_bcm43752a2_ag.blob -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/clm_bcm43752a2_pcie_ag.blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/clm_bcm43752a2_pcie_ag.blob -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_awnb108.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_awnb108.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_awnb108_ap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_awnb108_ap.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2_apsta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2_apsta.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm40181a2_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm40183b2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm40183b2.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm40183b2_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm40183b2_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43013c1_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43013c1_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43013c1_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43013c1_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43241b4_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43241b4_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4330.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4330.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43341b0_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43341b0_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4334b1_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4334b1_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4339a0_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4339a0_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4339a0_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4339a0_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0_apsta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0_apsta.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43436b0_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a0.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1_apsta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1_apsta.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43438a1_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43455c0_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43455c0_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43455c0_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43455c0_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43456c5_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43456c5_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43456c5_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43456c5_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4354a1_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4354a1_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4354a1_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4354a1_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4356a2_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4356a2_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4356a2_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4356a2_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c0_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c0_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c0_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c0_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c51a2_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c51a2_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c51a2_ag_apsta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm4359c51a2_ag_apsta.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_pcie_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_pcie_ag.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_pcie_ag_mfg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_bcm43752a2_pcie_ag_mfg.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_cyw43438.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_cyw43438.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/fw_cyw43455.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/fw_cyw43455.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nh660.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nh660.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/null.hcd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_4330.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_4330.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_4330_oob.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_4330_oob.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6210.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6210_24M.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6210_24M.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6234.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6234.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6275P.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6275P.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6330.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6330.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6335.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6335.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6441.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6441.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6476.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6476.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_AP6493.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_AP6493.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_B23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_B23.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_RK901.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_RK901.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_RK903.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_RK903.cal -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_RK903.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_RK903.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_RK903_26M.cal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_RK903_26M.cal -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6181.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6181.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6212.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6212.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a_ap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a_ap.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a_cy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6212a_cy.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6233f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6233f.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6236.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6236.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6255.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6255.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6256.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6275s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6275s.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap62x2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap62x2.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6354.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6354.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6356.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6356.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6356s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6356s.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6398s.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6398s.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6398sv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6398sv.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_ap6452.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_ap6452.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_awnb108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_awnb108.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_azw256.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_azw256.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_azw372.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_azw372.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_cyw43438.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_cyw43438.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/nvram_cyw43455.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/nvram_cyw43455.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/rk903.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/rk903.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/rk903_26M.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/rk903_26M.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/rk912_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/rk912_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/rk912_patch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/rk912_patch.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/rk912_patch_cal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/rk912_patch_cal.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8189e.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8189e.map -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723bs-vq0.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723bs-vq0.map -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723cs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723cs.map -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723ds.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/etc/firmware/wifi_efuse_8723ds.map -------------------------------------------------------------------------------- /prebuilt/firmware/files/system/vendor/firmware/bcm4339a0.hcd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/system/vendor/firmware/bcm4339a0.hcd -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.friendlyelec,nanopi-neo3s.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43455-sdio.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.friendlyelec,nanopi-r2.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43455-sdio.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43455-sdio.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43456-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43456-sdio.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43456-sdio.friendlyelec,nanopi-neo3s.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43456-sdio.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43456-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/brcm/brcmfmac43456-sdio.txt -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/intel/ibt-20-1-3.ddc: -------------------------------------------------------------------------------- 1 | () -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/intel/ibt-20-1-3.sfi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/intel/ibt-20-1-3.sfi -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/iwlwifi-cc-a0-59.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/iwlwifi-cc-a0-59.ucode -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0-59.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0-59.ucode -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0-72.ucode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0-72.ucode -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/iwlwifi-ty-a0-gf-a0.pnvm -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/BT_RAM_CODE_MT7922_1_1_hdr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/BT_RAM_CODE_MT7922_1_1_hdr.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/BT_RAM_CODE_MT7961_1_2_hdr.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_MT7922_patch_mcu_1_1_hdr.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_MT7961_patch_mcu_1_2_hdr.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_RAM_CODE_MT7922_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_RAM_CODE_MT7922_1.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_RAM_CODE_MT7961_1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mediatek/WIFI_RAM_CODE_MT7961_1.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/mt7662u.bin: -------------------------------------------------------------------------------- 1 | ../mt7662.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mediatek/mt7662u_rom_patch.bin: -------------------------------------------------------------------------------- 1 | ../mt7662_rom_patch.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mt7662.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mt7662.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/mt7662_rom_patch.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/mt7662_rom_patch.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rockchip/dptx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rockchip/dptx.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_config -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8723b_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761b_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761b_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761b_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761b_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761bu_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761bu_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761bu_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8761bu_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821c_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821c_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821c_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821c_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821cs_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821cs_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821cs_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8821cs_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cs_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cs_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cs_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cs_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cu_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cu_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cu_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8822cu_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8851bu_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8851bu_config.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8851bu_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_bt/rtl8851bu_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8105e-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8105e-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8106e-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8106e-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8106e-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8106e-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8107e-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8107e-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8107e-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8107e-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125a-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125a-3.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125b-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125b-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125b-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8125b-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-3.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-4.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153a-4.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153b-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8153b-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168d-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168d-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168d-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168d-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168e-3.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168f-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168f-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168f-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168f-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168fp-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168fp-3.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-3.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168g-3.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168h-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168h-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168h-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8168h-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8402-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8402-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8411-1.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8411-1.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8411-2.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtl_nic/rtl8411-2.fw -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822b_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822b_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822c_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822c_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822c_wow_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files/usr/lib/firmware/rtw88/rtw8822c_wow_fw.bin -------------------------------------------------------------------------------- /prebuilt/firmware/files2/usr/lib/firmware/regulatory.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files2/usr/lib/firmware/regulatory.db -------------------------------------------------------------------------------- /prebuilt/firmware/files2/usr/lib/firmware/regulatory.db.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/files2/usr/lib/firmware/regulatory.db.p7s -------------------------------------------------------------------------------- /prebuilt/firmware/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/firmware/install.sh -------------------------------------------------------------------------------- /prebuilt/idbloader.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/idbloader.img -------------------------------------------------------------------------------- /prebuilt/misc.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/misc.img -------------------------------------------------------------------------------- /prebuilt/parameter-opt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/parameter-opt.template -------------------------------------------------------------------------------- /prebuilt/parameter-plain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/parameter-plain.txt -------------------------------------------------------------------------------- /prebuilt/parameter.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/parameter.template -------------------------------------------------------------------------------- /prebuilt/uboot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/prebuilt/uboot.img -------------------------------------------------------------------------------- /test/kernel-patches/0001-disable-PCIe-func-of-the-cm3588.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/kernel-patches/0001-disable-PCIe-func-of-the-cm3588.patch -------------------------------------------------------------------------------- /test/test-big-rootfs-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-big-rootfs-img.sh -------------------------------------------------------------------------------- /test/test-btrfs-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-btrfs-rootfs.sh -------------------------------------------------------------------------------- /test/test-build-all-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-build-all-images.sh -------------------------------------------------------------------------------- /test/test-build-kernel-header-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-build-kernel-header-deb.sh -------------------------------------------------------------------------------- /test/test-custom-bootargs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-custom-bootargs.sh -------------------------------------------------------------------------------- /test/test-custom-logo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-custom-logo.sh -------------------------------------------------------------------------------- /test/test-custom-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-custom-rootfs.sh -------------------------------------------------------------------------------- /test/test-update-kernel-for-cm3588-no-pcie.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-kernel-for-cm3588-no-pcie.sh -------------------------------------------------------------------------------- /test/test-update-kernel-for-debiancore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-kernel-for-debiancore.sh -------------------------------------------------------------------------------- /test/test-update-kernel-for-friendlywrt23.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-kernel-for-friendlywrt23.sh -------------------------------------------------------------------------------- /test/test-update-kernel-for-linux-lowlatency.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-kernel-for-linux-lowlatency.sh -------------------------------------------------------------------------------- /test/test-update-kernel-for-ubuntu-jammy-minimal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-kernel-for-ubuntu-jammy-minimal.sh -------------------------------------------------------------------------------- /test/test-update-uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/test/test-update-uboot.sh -------------------------------------------------------------------------------- /tools/aarch64/mke2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/aarch64/mke2fs -------------------------------------------------------------------------------- /tools/aarch64/mkkrnlimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/aarch64/mkkrnlimg -------------------------------------------------------------------------------- /tools/aarch64/resource_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/aarch64/resource_tool -------------------------------------------------------------------------------- /tools/aarch64/sd_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/aarch64/sd_update -------------------------------------------------------------------------------- /tools/extract-rootfs-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/extract-rootfs-tar.sh -------------------------------------------------------------------------------- /tools/fakeroot-ng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/fakeroot-ng -------------------------------------------------------------------------------- /tools/fill_img_to_eflasher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/fill_img_to_eflasher -------------------------------------------------------------------------------- /tools/fill_prebuilt_uboot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/fill_prebuilt_uboot_bin.sh -------------------------------------------------------------------------------- /tools/generate-partmap-txt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/generate-partmap-txt.sh -------------------------------------------------------------------------------- /tools/get_pkg_filename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/get_pkg_filename.sh -------------------------------------------------------------------------------- /tools/get_rom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/get_rom.sh -------------------------------------------------------------------------------- /tools/global.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/global.sh -------------------------------------------------------------------------------- /tools/make-img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/make-img.sh -------------------------------------------------------------------------------- /tools/mke2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/mke2fs -------------------------------------------------------------------------------- /tools/mke2fs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/mke2fs.conf -------------------------------------------------------------------------------- /tools/mkkrnlimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/mkkrnlimg -------------------------------------------------------------------------------- /tools/prepare_friendlywrt_kernelmodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/prepare_friendlywrt_kernelmodules.sh -------------------------------------------------------------------------------- /tools/resource_tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/resource_tool -------------------------------------------------------------------------------- /tools/sd_tune2fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/sd_tune2fs.sh -------------------------------------------------------------------------------- /tools/sd_update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/sd_update -------------------------------------------------------------------------------- /tools/setup_boot_and_rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/setup_boot_and_rootfs.sh -------------------------------------------------------------------------------- /tools/update_kernel_bin_to_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/update_kernel_bin_to_img.sh -------------------------------------------------------------------------------- /tools/update_prebuilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/update_prebuilt.sh -------------------------------------------------------------------------------- /tools/update_uboot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/update_uboot_bin.sh -------------------------------------------------------------------------------- /tools/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/friendlyarm/sd-fuse_rk3588/HEAD/tools/util.sh --------------------------------------------------------------------------------