├── .gitignore ├── README.md ├── conf ├── layer.conf └── machine │ ├── freedom-u540.conf │ ├── include │ └── riscv │ │ └── tune-sifive.inc │ └── unmatched.conf ├── recipes-bsp ├── opensbi │ └── opensbi-sifive_1.6.bb └── u-boot │ ├── u-boot-sifive-2025.01 │ ├── 0001-scripts-dtc-pylibfdt-libfdt.i_shipped-Use-SWIG_Appen.patch │ └── riscv64 │ │ └── 0005-riscv-dts-Add-few-PMU-events.patch │ └── u-boot-sifive_2025.01.bb ├── recipes-kernel └── linux │ ├── linux-sifive-6.12.15+git │ └── unmatched │ │ └── defconfig │ └── linux-sifive_6.12.bb └── scripts ├── kas ├── freedom-u540.yml ├── include │ ├── clang.yml │ ├── container.yml │ ├── meta-sifive-common.yml │ └── test.yml ├── qemuriscv64.yml └── unmatched.yml └── lib └── wic └── canned-wks ├── freedom-u540-extlinux.conf ├── freedom-u540-spl-opensbi.wks ├── unmatched-extlinux.conf └── unmatched-spl-opensbi.wks /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/README.md -------------------------------------------------------------------------------- /conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/conf/layer.conf -------------------------------------------------------------------------------- /conf/machine/freedom-u540.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/conf/machine/freedom-u540.conf -------------------------------------------------------------------------------- /conf/machine/include/riscv/tune-sifive.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/conf/machine/include/riscv/tune-sifive.inc -------------------------------------------------------------------------------- /conf/machine/unmatched.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/conf/machine/unmatched.conf -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi-sifive_1.6.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-bsp/opensbi/opensbi-sifive_1.6.bb -------------------------------------------------------------------------------- /recipes-bsp/u-boot/u-boot-sifive-2025.01/0001-scripts-dtc-pylibfdt-libfdt.i_shipped-Use-SWIG_Appen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-bsp/u-boot/u-boot-sifive-2025.01/0001-scripts-dtc-pylibfdt-libfdt.i_shipped-Use-SWIG_Appen.patch -------------------------------------------------------------------------------- /recipes-bsp/u-boot/u-boot-sifive-2025.01/riscv64/0005-riscv-dts-Add-few-PMU-events.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-bsp/u-boot/u-boot-sifive-2025.01/riscv64/0005-riscv-dts-Add-few-PMU-events.patch -------------------------------------------------------------------------------- /recipes-bsp/u-boot/u-boot-sifive_2025.01.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-bsp/u-boot/u-boot-sifive_2025.01.bb -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-sifive-6.12.15+git/unmatched/defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-kernel/linux/linux-sifive-6.12.15+git/unmatched/defconfig -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-sifive_6.12.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/recipes-kernel/linux/linux-sifive_6.12.bb -------------------------------------------------------------------------------- /scripts/kas/freedom-u540.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/freedom-u540.yml -------------------------------------------------------------------------------- /scripts/kas/include/clang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/include/clang.yml -------------------------------------------------------------------------------- /scripts/kas/include/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/include/container.yml -------------------------------------------------------------------------------- /scripts/kas/include/meta-sifive-common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/include/meta-sifive-common.yml -------------------------------------------------------------------------------- /scripts/kas/include/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/include/test.yml -------------------------------------------------------------------------------- /scripts/kas/qemuriscv64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/qemuriscv64.yml -------------------------------------------------------------------------------- /scripts/kas/unmatched.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/kas/unmatched.yml -------------------------------------------------------------------------------- /scripts/lib/wic/canned-wks/freedom-u540-extlinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/lib/wic/canned-wks/freedom-u540-extlinux.conf -------------------------------------------------------------------------------- /scripts/lib/wic/canned-wks/freedom-u540-spl-opensbi.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/lib/wic/canned-wks/freedom-u540-spl-opensbi.wks -------------------------------------------------------------------------------- /scripts/lib/wic/canned-wks/unmatched-extlinux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/lib/wic/canned-wks/unmatched-extlinux.conf -------------------------------------------------------------------------------- /scripts/lib/wic/canned-wks/unmatched-spl-opensbi.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sifiveinc/meta-sifive/HEAD/scripts/lib/wic/canned-wks/unmatched-spl-opensbi.wks --------------------------------------------------------------------------------