├── .github └── workflows │ └── buildroot.yml ├── .gitignore ├── .gitmodules ├── Config.in ├── README.md ├── board └── pine64 │ └── ox64 │ ├── bl808.its │ ├── bl808_16M_partition.yaml │ ├── boot-m1s.cmd │ ├── boot-pine64.cmd │ ├── br-bl808-busybox-config-frag.conf │ ├── genimage.cfg │ ├── linux_defconfig │ ├── mergebin.py │ ├── nor_flash_whole_bin.py │ ├── patches │ ├── linux_deprecated │ │ ├── 0001-dt-bindings-serial-add-bindings-doc-for-Bouffalolab-.patch │ │ ├── 0002-serial-bflb_uart-add-Bouffalolab-UART-Driver.patch │ │ ├── 0003-MAINTAINERS-add-myself-as-a-reviewer-for-Bouffalolab.patch │ │ ├── 0004-riscv-add-the-Bouffalolab-SoC-family-Kconfig-option.patch │ │ ├── 0005-riscv-dts-bouffalolab-add-the-bl808-SoC-base-device-.patch │ │ ├── 0006-riscv-dts-bouffalolab-add-Sipeed-M1S-dock-devicetree.patch │ │ ├── 0007-MAINTAINERS-add-myself-as-Bouffalolab-SoC-entry-main.patch │ │ ├── 0008-riscv-dts-bouffalolab-add-bootargs-initrd.patch │ │ ├── 0009-riscv-dts-bouffalolab-add-xip_flash.patch │ │ ├── 0010-WIP-add-BFLB-MBOX-interrupt-controller-driver.patch │ │ ├── 0011-WIP-sdhci-add-BFLB-sdhci-driver.patch │ │ ├── 0012-disable-card-detection-dma-cap-clock-quirks.patch │ │ ├── 0013-UART2-working-under-Linux.patch │ │ ├── 0014-dts-bl808-add-fake-sdh-clock-at-96MHz.patch │ │ ├── 0015-sdhci-bflb-enable-additional-quirks.patch │ │ ├── 0016-Disable-flash-rootfs-for-now-edit-bootargs-to-use-SD.patch │ │ ├── 0017-Rename-DTS-Files.patch │ │ ├── 0018-tty-serial-bflb_uart-fix-leaked-ISR-registration.patch │ │ ├── 0019-mmc-sdhci-bflb-remove-unnecessary-quirks.patch │ │ ├── 0020-riscv-dts-bflb-m1s-Fix-address-size-cells.patch │ │ ├── 0021-riscv-dts-bflb-ox64-Fix-address-size-cells.patch │ │ ├── 0022-Add-timer-node-for-OpenSBI-1.2-compatibility.patch │ │ ├── 0023-Tabstops-are-8-chars-not-4.patch │ │ ├── 0024-Add-GPIO-PINCTRL-and-HWRNG-Crypto-drivers.patch │ │ ├── 0025-Update-device-trees-for-new-GPIO-and-HWRNG-drivers.patch │ │ ├── 0026-Bring-M1s-device-tree-up-to-date-with-Ox64-s-changes.patch │ │ ├── 0027-Add-irqchip-driver.patch │ │ ├── 0028-dts-bl808-SDH-uses-WL-sys-all-irq.patch │ │ ├── 0029-bl808-Add-M0-firmware-loader.patch │ │ ├── 0030-dts-bl808-Shrink-reserved-M0-memory-to-1M.patch │ │ ├── 0031-bl808-Add-sflash-driver.patch │ │ ├── 0032-dts-bl808-set-rootfs-to-nor-flash.patch │ │ ├── 0033-pwm-bl808-add-Bouffalo-Lab-bl808-pwm-controller-driv.patch │ │ ├── 0034-riscv-dts-bl808-add-and-enable-PWM-controller.patch │ │ └── 0035-riscv-bl808-linux-dts-add-PWM-LED-device-in-Sipeed-M.patch │ ├── opensbi │ │ ├── 0001-lib-utils-serial-Add-Bouffalo-Lab-serial-driver.patch │ │ └── 0002-update-opensbi-firmware-base-image-and-dtb-addresses.patch │ └── uboot │ │ ├── 0001-add-default-script-address.patch │ │ ├── 0002-add-a-few-more-variables-for-extlinux-loading-to-wor.patch │ │ ├── 0003-bl808-dts-Reserve-M0-fw-memory.patch │ │ └── 0004-NEW-add-bl808-sflash-driver.patch │ ├── post-build.sh │ ├── post-image.sh │ ├── rootfs-overlay │ ├── boot │ │ └── extlinux │ │ │ └── extlinux.conf │ ├── etc │ │ ├── fstab │ │ └── init.d │ │ │ └── S01growfs │ ├── overlay │ │ └── dummy │ ├── root │ │ └── README!!!!.txt │ └── sbin │ │ └── init.sh │ └── uboot_defconfig ├── boot ├── Config.in └── oblfr │ ├── Config.in │ └── oblfr.mk ├── configs ├── bl808_nor_flash_defconfig ├── pine64_ox64_defconfig └── pine64_ox64_full_defconfig ├── docs └── images │ ├── bl808-chip-erase.png │ ├── bl808-flash-lowloader.png │ ├── bl808-flash-whole-image.png │ └── bl808-single-download.png ├── external.desc ├── external.mk └── package ├── Config.in ├── Config.in.host ├── blmcusdk ├── Config.in.host └── blmcusdk.mk ├── blwnet_xram ├── Config.in └── blwnet_xram.mk ├── cloudutils ├── Config.in └── cloudutils.mk └── riscv-unknown-elf-gcc ├── Config.in.host └── riscv-unknown-elf-gcc.mk /.github/workflows/buildroot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/.github/workflows/buildroot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/.gitmodules -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/Config.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/README.md -------------------------------------------------------------------------------- /board/pine64/ox64/bl808.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/bl808.its -------------------------------------------------------------------------------- /board/pine64/ox64/bl808_16M_partition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/bl808_16M_partition.yaml -------------------------------------------------------------------------------- /board/pine64/ox64/boot-m1s.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/boot-m1s.cmd -------------------------------------------------------------------------------- /board/pine64/ox64/boot-pine64.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/boot-pine64.cmd -------------------------------------------------------------------------------- /board/pine64/ox64/br-bl808-busybox-config-frag.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/br-bl808-busybox-config-frag.conf -------------------------------------------------------------------------------- /board/pine64/ox64/genimage.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/genimage.cfg -------------------------------------------------------------------------------- /board/pine64/ox64/linux_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/linux_defconfig -------------------------------------------------------------------------------- /board/pine64/ox64/mergebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/mergebin.py -------------------------------------------------------------------------------- /board/pine64/ox64/nor_flash_whole_bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/nor_flash_whole_bin.py -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0001-dt-bindings-serial-add-bindings-doc-for-Bouffalolab-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0001-dt-bindings-serial-add-bindings-doc-for-Bouffalolab-.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0002-serial-bflb_uart-add-Bouffalolab-UART-Driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0002-serial-bflb_uart-add-Bouffalolab-UART-Driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0003-MAINTAINERS-add-myself-as-a-reviewer-for-Bouffalolab.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0003-MAINTAINERS-add-myself-as-a-reviewer-for-Bouffalolab.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0004-riscv-add-the-Bouffalolab-SoC-family-Kconfig-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0004-riscv-add-the-Bouffalolab-SoC-family-Kconfig-option.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0005-riscv-dts-bouffalolab-add-the-bl808-SoC-base-device-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0005-riscv-dts-bouffalolab-add-the-bl808-SoC-base-device-.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0006-riscv-dts-bouffalolab-add-Sipeed-M1S-dock-devicetree.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0006-riscv-dts-bouffalolab-add-Sipeed-M1S-dock-devicetree.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0007-MAINTAINERS-add-myself-as-Bouffalolab-SoC-entry-main.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0007-MAINTAINERS-add-myself-as-Bouffalolab-SoC-entry-main.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0008-riscv-dts-bouffalolab-add-bootargs-initrd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0008-riscv-dts-bouffalolab-add-bootargs-initrd.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0009-riscv-dts-bouffalolab-add-xip_flash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0009-riscv-dts-bouffalolab-add-xip_flash.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0010-WIP-add-BFLB-MBOX-interrupt-controller-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0010-WIP-add-BFLB-MBOX-interrupt-controller-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0011-WIP-sdhci-add-BFLB-sdhci-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0011-WIP-sdhci-add-BFLB-sdhci-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0012-disable-card-detection-dma-cap-clock-quirks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0012-disable-card-detection-dma-cap-clock-quirks.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0013-UART2-working-under-Linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0013-UART2-working-under-Linux.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0014-dts-bl808-add-fake-sdh-clock-at-96MHz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0014-dts-bl808-add-fake-sdh-clock-at-96MHz.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0015-sdhci-bflb-enable-additional-quirks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0015-sdhci-bflb-enable-additional-quirks.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0016-Disable-flash-rootfs-for-now-edit-bootargs-to-use-SD.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0016-Disable-flash-rootfs-for-now-edit-bootargs-to-use-SD.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0017-Rename-DTS-Files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0017-Rename-DTS-Files.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0018-tty-serial-bflb_uart-fix-leaked-ISR-registration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0018-tty-serial-bflb_uart-fix-leaked-ISR-registration.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0019-mmc-sdhci-bflb-remove-unnecessary-quirks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0019-mmc-sdhci-bflb-remove-unnecessary-quirks.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0020-riscv-dts-bflb-m1s-Fix-address-size-cells.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0020-riscv-dts-bflb-m1s-Fix-address-size-cells.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0021-riscv-dts-bflb-ox64-Fix-address-size-cells.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0021-riscv-dts-bflb-ox64-Fix-address-size-cells.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0022-Add-timer-node-for-OpenSBI-1.2-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0022-Add-timer-node-for-OpenSBI-1.2-compatibility.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0023-Tabstops-are-8-chars-not-4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0023-Tabstops-are-8-chars-not-4.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0024-Add-GPIO-PINCTRL-and-HWRNG-Crypto-drivers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0024-Add-GPIO-PINCTRL-and-HWRNG-Crypto-drivers.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0025-Update-device-trees-for-new-GPIO-and-HWRNG-drivers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0025-Update-device-trees-for-new-GPIO-and-HWRNG-drivers.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0026-Bring-M1s-device-tree-up-to-date-with-Ox64-s-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0026-Bring-M1s-device-tree-up-to-date-with-Ox64-s-changes.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0027-Add-irqchip-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0027-Add-irqchip-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0028-dts-bl808-SDH-uses-WL-sys-all-irq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0028-dts-bl808-SDH-uses-WL-sys-all-irq.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0029-bl808-Add-M0-firmware-loader.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0029-bl808-Add-M0-firmware-loader.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0030-dts-bl808-Shrink-reserved-M0-memory-to-1M.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0030-dts-bl808-Shrink-reserved-M0-memory-to-1M.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0031-bl808-Add-sflash-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0031-bl808-Add-sflash-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0032-dts-bl808-set-rootfs-to-nor-flash.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0032-dts-bl808-set-rootfs-to-nor-flash.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0033-pwm-bl808-add-Bouffalo-Lab-bl808-pwm-controller-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0033-pwm-bl808-add-Bouffalo-Lab-bl808-pwm-controller-driv.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0034-riscv-dts-bl808-add-and-enable-PWM-controller.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0034-riscv-dts-bl808-add-and-enable-PWM-controller.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/linux_deprecated/0035-riscv-bl808-linux-dts-add-PWM-LED-device-in-Sipeed-M.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/linux_deprecated/0035-riscv-bl808-linux-dts-add-PWM-LED-device-in-Sipeed-M.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/opensbi/0001-lib-utils-serial-Add-Bouffalo-Lab-serial-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/opensbi/0001-lib-utils-serial-Add-Bouffalo-Lab-serial-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/opensbi/0002-update-opensbi-firmware-base-image-and-dtb-addresses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/opensbi/0002-update-opensbi-firmware-base-image-and-dtb-addresses.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/uboot/0001-add-default-script-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/uboot/0001-add-default-script-address.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/uboot/0002-add-a-few-more-variables-for-extlinux-loading-to-wor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/uboot/0002-add-a-few-more-variables-for-extlinux-loading-to-wor.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/uboot/0003-bl808-dts-Reserve-M0-fw-memory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/uboot/0003-bl808-dts-Reserve-M0-fw-memory.patch -------------------------------------------------------------------------------- /board/pine64/ox64/patches/uboot/0004-NEW-add-bl808-sflash-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/patches/uboot/0004-NEW-add-bl808-sflash-driver.patch -------------------------------------------------------------------------------- /board/pine64/ox64/post-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/post-build.sh -------------------------------------------------------------------------------- /board/pine64/ox64/post-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/post-image.sh -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/boot/extlinux/extlinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/rootfs-overlay/boot/extlinux/extlinux.conf -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/rootfs-overlay/etc/fstab -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/etc/init.d/S01growfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/rootfs-overlay/etc/init.d/S01growfs -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/overlay/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/root/README!!!!.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/rootfs-overlay/root/README!!!!.txt -------------------------------------------------------------------------------- /board/pine64/ox64/rootfs-overlay/sbin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/rootfs-overlay/sbin/init.sh -------------------------------------------------------------------------------- /board/pine64/ox64/uboot_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/board/pine64/ox64/uboot_defconfig -------------------------------------------------------------------------------- /boot/Config.in: -------------------------------------------------------------------------------- 1 | source "$BR2_EXTERNAL_BOUFFALO_BR_PATH/boot/oblfr/Config.in" -------------------------------------------------------------------------------- /boot/oblfr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/boot/oblfr/Config.in -------------------------------------------------------------------------------- /boot/oblfr/oblfr.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/boot/oblfr/oblfr.mk -------------------------------------------------------------------------------- /configs/bl808_nor_flash_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/configs/bl808_nor_flash_defconfig -------------------------------------------------------------------------------- /configs/pine64_ox64_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/configs/pine64_ox64_defconfig -------------------------------------------------------------------------------- /configs/pine64_ox64_full_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/configs/pine64_ox64_full_defconfig -------------------------------------------------------------------------------- /docs/images/bl808-chip-erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/docs/images/bl808-chip-erase.png -------------------------------------------------------------------------------- /docs/images/bl808-flash-lowloader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/docs/images/bl808-flash-lowloader.png -------------------------------------------------------------------------------- /docs/images/bl808-flash-whole-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/docs/images/bl808-flash-whole-image.png -------------------------------------------------------------------------------- /docs/images/bl808-single-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/docs/images/bl808-single-download.png -------------------------------------------------------------------------------- /external.desc: -------------------------------------------------------------------------------- 1 | name: BOUFFALO_BR 2 | desc: Buildroot for Bouffalo chips -------------------------------------------------------------------------------- /external.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/external.mk -------------------------------------------------------------------------------- /package/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/Config.in -------------------------------------------------------------------------------- /package/Config.in.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/Config.in.host -------------------------------------------------------------------------------- /package/blmcusdk/Config.in.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/blmcusdk/Config.in.host -------------------------------------------------------------------------------- /package/blmcusdk/blmcusdk.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/blmcusdk/blmcusdk.mk -------------------------------------------------------------------------------- /package/blwnet_xram/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/blwnet_xram/Config.in -------------------------------------------------------------------------------- /package/blwnet_xram/blwnet_xram.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/blwnet_xram/blwnet_xram.mk -------------------------------------------------------------------------------- /package/cloudutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/cloudutils/Config.in -------------------------------------------------------------------------------- /package/cloudutils/cloudutils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/cloudutils/cloudutils.mk -------------------------------------------------------------------------------- /package/riscv-unknown-elf-gcc/Config.in.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/riscv-unknown-elf-gcc/Config.in.host -------------------------------------------------------------------------------- /package/riscv-unknown-elf-gcc/riscv-unknown-elf-gcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bouffalolab/buildroot_bouffalo/HEAD/package/riscv-unknown-elf-gcc/riscv-unknown-elf-gcc.mk --------------------------------------------------------------------------------