├── README.md ├── conf ├── layer.conf └── machine │ ├── starfive-dubhe.conf │ ├── starfive-jh8100.conf │ └── starfive-visionfive2.conf ├── recipes-benchmark ├── coremark │ ├── coremark_1.0.bb │ └── files │ │ └── 0001-Add-Compiler-Flags-and-remove-exe-from-output.patch └── dhrystone │ ├── dhrystone │ └── 0001-Remove-prompt.patch │ └── dhrystone_2.1.bbappend ├── recipes-bsp ├── common │ └── visionfive2-firmware.inc ├── deploy-bootfiles │ ├── deploy-bootfiles_0.1.bb │ └── files │ │ ├── bootcode.bin │ │ ├── bootcode_min.bin │ │ └── bootjump.bin ├── firmware │ ├── files │ │ └── hifi4_elf │ └── firmware-hifi4.bb ├── opensbi │ ├── files │ │ ├── 0001-Makefile-Don-t-specify-mabi-or-march.patch │ │ └── visionfive2-uboot-fit-image.its │ ├── opensbi-payloads.inc │ ├── opensbi_%.bbappend │ ├── opensbi_1.2.bb │ ├── opensbi_1.4.bb │ └── opensbi_1.5.1.bb ├── starfive-tool │ ├── LICENSE │ ├── files │ │ └── jh8100_cst.tar.gz │ ├── spltool-native_1.0.0.bb │ └── starfive-tool.bb └── u-boot │ ├── files │ ├── 0001-include-configs-starfive-dubhe-fpga.h-Mask-ttyS0-and.patch │ ├── firmware.bin.normal.out │ ├── jh8100-fpga.bin.normal.out │ ├── run_qemu_virt.dtb │ ├── tftp-mmc-boot.txt │ ├── uboot.env │ ├── uboot_disable_logo.patch │ ├── vf2_nvme_uEnv.txt │ ├── vf2_uEnv.txt │ └── visionfive2-fit-image.its │ └── u-boot-starfive.bb ├── recipes-connectivity ├── dhcp │ ├── dhcp.inc │ ├── dhcp │ │ ├── 0001-define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.patch │ │ ├── 0001-workaround-busybox-limitation-in-linux-dhclient-script.patch │ │ ├── 0002-dhclient-dbus.patch │ │ ├── 0003-link-with-lcrypto.patch │ │ ├── 0004-Fix-out-of-tree-builds.patch │ │ ├── 0005-dhcp-client-fix-invoke-dhclient-script-failed-on-Rea.patch │ │ ├── 0007-Add-configure-argument-to-make-the-libxml2-dependenc.patch │ │ ├── 0009-remove-dhclient-script-bash-dependency.patch │ │ ├── 0012-dhcp-correct-the-intention-for-xml2-lib-search.patch │ │ ├── 0013-fixup_use_libbind.patch │ │ ├── 0027-Add-missed-sd-notify-patch-to-manage-dhcpd-with-syst.patch │ │ ├── add-riscv-support.patch │ │ └── bind.tar.gz │ ├── dhcp_%.bbappend │ ├── dhcp_4.4.3.bb │ └── files │ │ ├── default-relay │ │ ├── default-server │ │ ├── dhclient-systemd-wrapper │ │ ├── dhclient.conf │ │ ├── dhclient.service │ │ ├── dhcp-CLOEXEC.patch │ │ ├── dhcpd.conf │ │ ├── dhcpd.service │ │ ├── dhcpd6.service │ │ ├── dhcrelay.service │ │ ├── init-relay │ │ └── init-server ├── slirp │ └── libslirp_git.bb └── sshpass │ └── sshpass_1.06.bb ├── recipes-core ├── busybox │ ├── busybox │ │ └── fragment.cfg │ └── busybox_%.bbappend ├── glibc │ ├── cross-localedef-native_2.39.bb │ ├── glibc-collateral.inc │ ├── glibc-common.inc │ ├── glibc-ld.inc │ ├── glibc-locale.inc │ ├── glibc-locale_2.39.bb │ ├── glibc-mtrace.inc │ ├── glibc-mtrace_2.39.bb │ ├── glibc-package.inc │ ├── glibc-scripts.inc │ ├── glibc-scripts_2.39.bb │ ├── glibc-tests.inc │ ├── glibc-testsuite_2.39.bb │ ├── glibc-version.inc │ ├── glibc-y2038-tests_2.39.bb │ ├── glibc.inc │ ├── glibc │ │ ├── 0001-localedef-Add-hardlink-resolver-from-util-linux.patch │ │ ├── 0001-riscv-Add-Linux-hwprobe-syscall-support.patch │ │ ├── 0002-linux-Introduce-INTERNAL_VSYSCALL.patch │ │ ├── 0002-localedef-fix-ups-hardlink-to-make-it-compile.patch │ │ ├── 0003-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch │ │ ├── 0003-riscv-Add-hwprobe-vdso-call-support.patch │ │ ├── 0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch │ │ ├── 0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch │ │ ├── 0005-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch │ │ ├── 0005-riscv-Enable-multi-arg-ifunc-resolvers.patch │ │ ├── 0006-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch │ │ ├── 0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch │ │ ├── 0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch │ │ ├── 0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch │ │ ├── 0008-nativesdk-glibc-Fall-back-to-faccessat-on-faccess2-r.patch │ │ ├── 0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch │ │ ├── 0009-riscv-Add-vector-version-memcpy.patch │ │ ├── 0009-yes-within-the-path-sets-wrong-config-variables.patch │ │ ├── 0010-eglibc-Cross-building-and-testing-instructions.patch │ │ ├── 0010-riscv-Optimize-memchr-with-vector-b-extension.patch │ │ ├── 0011-eglibc-Help-bootstrap-cross-toolchain.patch │ │ ├── 0011-riscv-Optimize-memcmp-with-vector-extension.patch │ │ ├── 0012-eglibc-Resolve-__fpscr_values-on-SH4.patch │ │ ├── 0012-riscv-Optimize-memmove-with-vector-extension.patch │ │ ├── 0013-eglibc-Forward-port-cross-locale-generation-support.patch │ │ ├── 0013-riscv-Optimize-strlen-with-vector-extension.patch │ │ ├── 0014-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch │ │ ├── 0014-riscv-Optimize-strcmp-with-vector-extension.patch │ │ ├── 0015-powerpc-Do-not-ask-compiler-for-finding-arch.patch │ │ ├── 0015-riscv-Optimize-memset-with-vector-extension.patch │ │ ├── 0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch │ │ ├── 0016-wordsize.h-Unify-the-header-between-arm-and-aarch64.patch │ │ ├── 0017-Replace-echo-with-printf-builtin-in-nscd-init-script.patch │ │ ├── 0018-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch │ │ ├── 0019-timezone-Make-shell-interpreter-overridable-in-tzsel.patch │ │ ├── 0020-tzselect.ksh-Use-bin-sh-default-shell-interpreter.patch │ │ ├── 0021-fix-create-thread-failed-in-unprivileged-process-BZ-.patch │ │ ├── 0022-Avoid-hardcoded-build-time-paths-in-the-output-binar.patch │ │ ├── 0023-qemu-stale-process.patch │ │ ├── check-test-wrapper │ │ ├── etc │ │ │ └── ld.so.conf │ │ ├── generate-supported.mk │ │ ├── makedbs.sh │ │ ├── run-ptest │ │ └── starfive │ │ │ ├── 0001-riscv-Add-Linux-hwprobe-syscall-support.patch │ │ │ ├── 0002-linux-Introduce-INTERNAL_VSYSCALL.patch │ │ │ ├── 0003-riscv-Add-hwprobe-vdso-call-support.patch │ │ │ ├── 0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch │ │ │ ├── 0005-riscv-Enable-multi-arg-ifunc-resolvers.patch │ │ │ ├── 0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch │ │ │ ├── 0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch │ │ │ ├── 0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch │ │ │ ├── 0009-riscv-Add-vector-version-memcpy.patch │ │ │ ├── 0010-riscv-Optimize-memchr-with-vector-b-extension.patch │ │ │ ├── 0011-riscv-Optimize-memcmp-with-vector-extension.patch │ │ │ ├── 0012-riscv-Optimize-memmove-with-vector-extension.patch │ │ │ ├── 0013-riscv-Optimize-strlen-with-vector-extension.patch │ │ │ ├── 0014-riscv-Optimize-strcmp-with-vector-extension.patch │ │ │ ├── 0015-riscv-Optimize-memset-with-vector-extension.patch │ │ │ ├── 0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch │ │ │ └── 0017-Fix-bcmp-missing-in-so.patch │ ├── glibc_2.39.bb │ ├── glibc_2.39.bbappend │ ├── ldconfig-native-2.12.1 │ │ ├── 32and64bit.patch │ │ ├── README │ │ ├── add-64-bit-flag-for-ELF64-entries.patch │ │ ├── add-riscv-support.patch │ │ ├── endian-ness_handling.patch │ │ ├── endian-ness_handling_fix.patch │ │ ├── endianess-header.patch │ │ ├── flag_fix.patch │ │ ├── ldconfig-default-to-all-multilib-dirs.patch │ │ ├── ldconfig-handle-.dynstr-located-in-separate-segment.patch │ │ ├── ldconfig-native-2.12.1.tar.bz2 │ │ ├── ldconfig.patch │ │ ├── ldconfig_aux-cache_path_fix.patch │ │ └── no-aux-cache.patch │ └── ldconfig-native_2.12.1.bb ├── images │ ├── core-image-minimal-initramfs.bbappend │ ├── core-image-minimal-xfce.bbappend │ ├── core-image-minimal.bbappend │ ├── core-image-starfive-extra.bb │ ├── dubhe-image-initramfs.bb │ ├── initramfs-module-install_1.0.bbappend │ └── sd-image.inc ├── initrdscripts │ ├── files │ │ └── init-boot.sh │ └── initramfs-boot_1.0.bbappend ├── meta │ └── meta-extsdk-toolchain.bbappend └── packagegroups │ ├── packagegroup-starfive-c.bb │ ├── packagegroup-starfive-dubhe-essentials.bb │ ├── packagegroup-starfive-essentials.bb │ └── packagegroup-starfive-toolchain.bb ├── recipes-crypto └── libkcapi │ ├── files │ └── 0002-hasher-symlink.patch │ ├── libkcapi_1.5.0.bb │ └── libkcapi_1.5.0.bbappend ├── recipes-devtools ├── binutils │ ├── binutils-2.43.inc │ ├── binutils-cross-canadian.inc │ ├── binutils-cross-canadian_2.43.bb │ ├── binutils-cross.inc │ ├── binutils-cross_2.43.bb │ ├── binutils-crosssdk_2.43.bb │ ├── binutils-testsuite_2.43.bb │ ├── binutils.inc │ ├── binutils │ │ ├── 0001-binutils-crosssdk-Generate-relocatable-SDKs.patch │ │ ├── 0002-binutils-cross-Do-not-generate-linker-script-directo.patch │ │ ├── 0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch │ │ ├── 0004-Point-scripts-location-to-libdir.patch │ │ ├── 0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch │ │ ├── 0006-warn-for-uses-of-system-directories-when-cross-linki.patch │ │ ├── 0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch │ │ ├── 0008-Use-libtool-2.4.patch │ │ ├── 0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch │ │ ├── 0010-sync-with-OE-libtool-changes.patch │ │ ├── 0011-Check-for-clang-before-checking-gcc-version.patch │ │ ├── 0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch │ │ ├── 0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch │ │ ├── 0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch │ │ └── starfive │ │ │ ├── 0001-gas-riscv-Add-customer-pref-instruction.patch │ │ │ ├── 0002-gas-riscv-Add-customer-CSR-instructions.patch │ │ │ └── 0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch │ └── binutils_2.43.bb ├── clang │ ├── clang-cross-canadian_git.bb │ ├── clang-cross_git.bb │ ├── clang-crosssdk_git.bb │ ├── clang.inc │ ├── clang │ │ ├── 0001-libcxxabi-Find-libunwind-headers-when-LIBCXXABI_LIBU.patch │ │ ├── 0002-compiler-rt-support-a-new-embedded-linux-target.patch │ │ ├── 0003-compiler-rt-Simplify-cross-compilation.-Don-t-use-na.patch │ │ ├── 0004-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch │ │ ├── 0005-llvm-allow-env-override-of-exe-and-libdir-path.patch │ │ ├── 0006-clang-driver-Check-sysroot-for-ldso-path.patch │ │ ├── 0007-clang-Driver-tools.cpp-Add-lssp_nonshared-on-musl.patch │ │ ├── 0008-clang-Prepend-trailing-to-sysroot.patch │ │ ├── 0009-clang-Look-inside-the-target-sysroot-for-compiler-ru.patch │ │ ├── 0010-clang-Define-releative-gcc-installation-dir.patch │ │ ├── 0011-clang-Add-lpthread-and-ldl-along-with-lunwind-for-st.patch │ │ ├── 0012-Pass-PYTHON_EXECUTABLE-when-cross-compiling-for-nati.patch │ │ ├── 0013-Check-for-atomic-double-intrinsics.patch │ │ ├── 0014-libcxx-Add-compiler-runtime-library-to-link-step-for.patch │ │ ├── 0015-clang-llvm-cmake-Fix-configure-for-packages-using-fi.patch │ │ ├── 0016-clang-Fix-resource-dir-location-for-cross-toolchains.patch │ │ ├── 0017-clang-driver-Add-dyld-prefix-when-checking-sysroot-f.patch │ │ ├── 0018-clang-Use-python3-in-python-scripts.patch │ │ ├── 0019-For-x86_64-set-Yocto-based-GCC-install-search-path.patch │ │ ├── 0020-llvm-Do-not-use-find_library-for-ncurses.patch │ │ ├── 0021-llvm-Insert-anchor-for-adding-OE-distro-vendor-names.patch │ │ ├── 0022-compiler-rt-Do-not-use-backtrace-APIs-on-non-glibc-l.patch │ │ ├── 0023-clang-Fix-x86-triple-for-non-debian-multiarch-linux-.patch │ │ ├── 0024-libunwind-Added-unw_backtrace-method.patch │ │ ├── 0025-clang-Do-not-use-install-relative-libc-headers.patch │ │ ├── 0026-clang-Fix-how-driver-finds-GCC-installation-path-on-.patch │ │ ├── 0027-Fix-lib-paths-for-OpenEmbedded-Host.patch │ │ ├── 0028-Correct-library-search-path-for-OpenEmbedded-Host.patch │ │ ├── 0029-lldb-Link-with-libatomic-on-x86.patch │ │ ├── 0030-compiler-rt-Enable-__int128-for-ppc32.patch │ │ ├── 0031-llvm-Do-not-use-cmake-infra-to-detect-libzstd.patch │ │ ├── 0032-compiler-rt-Fix-stat-struct-s-size-for-O32-ABI.patch │ │ ├── 0033-compiler-rt-Undef-_TIME_BITS-along-with-_FILE_OFFSET.patch │ │ ├── 0034-ToolChains-Gnu.cpp-ARMLibDirs-search-also-in-lib32.patch │ │ ├── 0035-compiler-rt-Fix-cmake-check-for-_Float16-and-__bf16.patch │ │ ├── 0036-llvm-Add-libunwind.pc.in-and-llvm-config-scripts.patch │ │ └── starfive │ │ │ ├── 0001-Add-support-for-Starfive-private-pref-instruction.patch │ │ │ ├── 0002-Add-support-for-Starfive-private-CSR-instructions.patch │ │ │ ├── 0003-Support-type-conversion-between-fixed-vector-and-sca.patch │ │ │ ├── 0004-Support-old-b-letter-represents-for-B-extension.patch │ │ │ ├── 0005-Keep-old-register-definitions-because-Dubhe-follow-o.patch │ │ │ ├── 0006-Align-bare-metal-multilib-directories-with-gcc.patch │ │ │ └── 0007-Align-default-march-string-with-GCC.patch │ ├── clang_git.bb │ ├── common-source.inc │ ├── common.inc │ ├── compiler-rt-sanitizers_git.bb │ ├── compiler-rt_git.bb │ ├── libclc_git.bb │ ├── libcxx_git.bb │ ├── llvm-project-source.bb │ ├── llvm-project-source.bbappend │ ├── llvm-project-source.inc │ ├── nativesdk-clang-glue.bb │ └── openmp_git.bb ├── gcc │ ├── gcc-14.2.inc │ ├── gcc-14.2.inc.ori │ ├── gcc-common.inc │ ├── gcc-configure-common.inc │ ├── gcc-cross-canadian.inc │ ├── gcc-cross-canadian_14.2.bb │ ├── gcc-cross.inc │ ├── gcc-cross_14.2.bb │ ├── gcc-crosssdk.inc │ ├── gcc-crosssdk_14.2.bb │ ├── gcc-multilib-config.inc │ ├── gcc-runtime.inc │ ├── gcc-runtime_14.2.bb │ ├── gcc-sanitizers.inc │ ├── gcc-sanitizers_14.2.bb │ ├── gcc-shared-source.inc │ ├── gcc-source.inc │ ├── gcc-source_14.2.bb │ ├── gcc-target.inc │ ├── gcc-testsuite.inc │ ├── gcc │ │ ├── 0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch │ │ ├── 0002-gcc-poison-system-directories.patch │ │ ├── 0003-64-bit-multilib-hack.patch │ │ ├── 0004-Pass-CXXFLAGS_FOR_BUILD-in-a-couple-of-places-to-avo.patch │ │ ├── 0005-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch │ │ ├── 0006-cpp-honor-sysroot.patch │ │ ├── 0007-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch │ │ ├── 0008-libtool.patch │ │ ├── 0009-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch │ │ ├── 0010-Use-the-multilib-config-files-from-B-instead-of-usin.patch │ │ ├── 0011-aarch64-Fix-include-paths-when-S-B.patch │ │ ├── 0012-Avoid-using-libdir-from-.la-which-usually-points-to-.patch │ │ ├── 0013-Ensure-target-gcc-headers-can-be-included.patch │ │ ├── 0014-Don-t-search-host-directory-during-relink-if-inst_pr.patch │ │ ├── 0015-libcc1-fix-libcc1-s-install-path-and-rpath.patch │ │ ├── 0016-handle-sysroot-support-for-nativesdk-gcc.patch │ │ ├── 0017-Search-target-sysroot-gcc-version-specific-dirs-with.patch │ │ ├── 0018-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch │ │ ├── 0019-Re-introduce-spe-commandline-options.patch │ │ ├── 0020-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch │ │ ├── 0021-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch │ │ ├── 0022-libatomic-Do-not-enforce-march-on-aarch64.patch │ │ ├── 0023-Fix-install-path-of-linux64.h.patch │ │ ├── 0024-Avoid-hardcoded-build-paths-into-ppc-libgcc.patch │ │ ├── 0025-gcc-testsuite-tweaks-for-mips-OE.patch │ │ └── starfive │ │ │ ├── 0001-RISCV-Support-b-letter-for-representation-of-B-exten.patch │ │ │ ├── 0002-RISCV-Add-multilib-config-for-baremetal.patch │ │ │ ├── 0003-default-enable-align-functions-16-and-align-loops-8.patch │ │ │ ├── 0004-RISCV-Fix-multilib-config-for-baremetal.patch │ │ │ ├── 0005-ira-Increase-the-frequency-of-BB-in-inner-loop.patch │ │ │ ├── 0006-add-xstcmo-option-and-starfive-dubhe-core.patch │ │ │ └── 0007-add-starfive-dubhe-fusion-patterns.patch │ ├── gcc_14.2.bb │ ├── libgcc-common.inc │ ├── libgcc-initial.inc │ ├── libgcc-initial_14.2.bb │ ├── libgcc.inc │ ├── libgcc_14.2.bb │ ├── libgfortran.inc │ └── libgfortran_14.2.bb ├── gdb │ ├── gdb-common.inc │ ├── gdb-cross-canadian.inc │ ├── gdb-cross-canadian_14.2.bb │ ├── gdb-cross.inc │ ├── gdb-cross_14.2.bb │ ├── gdb.inc │ ├── gdb │ │ ├── 0001-mips-linux-nat-Define-_ABIO32-if-not-defined.patch │ │ ├── 0002-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch │ │ ├── 0003-Dont-disable-libreadline.a-when-using-disable-static.patch │ │ ├── 0004-use-asm-sgidefs.h.patch │ │ ├── 0005-Change-order-of-CFLAGS.patch │ │ ├── 0007-Fix-invalid-sigprocmask-call.patch │ │ ├── 0008-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch │ │ └── starfive │ │ │ ├── 0001-gas-riscv-Add-customer-pref-instruction.patch │ │ │ ├── 0002-gas-riscv-Add-customer-CSR-instructions.patch │ │ │ └── 0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch │ ├── gdb_14.2.bb │ └── gdb_14.2.bbappend ├── llvm │ ├── llvm │ │ ├── 0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch │ │ ├── 0002-llvm-Fix-CVE-2024-0151.patch │ │ ├── 0007-llvm-allow-env-override-of-exe-path.patch │ │ └── llvm-config │ └── llvm_18.1.8.bb ├── luajit │ ├── luajit-riscv │ │ ├── 0001-Do-not-strip-automatically-this-leaves-the-stripping.patch │ │ ├── 0002-original-patch-riscv-cross-compile-support.patch.patch │ │ ├── clang.patch │ │ └── riscv-cross-compile-support.patch │ └── luajit-riscv_git.bb ├── meson │ ├── meson │ │ ├── 0001-Make-CPU-family-warnings-fatal.patch │ │ ├── 0001-python-module-do-not-manipulate-the-environment-when.patch │ │ ├── 0002-Support-building-allarch-recipes-again.patch │ │ ├── meson-setup.py │ │ └── meson-wrapper │ └── meson_1.3.1.bb ├── mtd │ └── mtd-utils_git.bbappend ├── nodejs │ ├── nodejs-oe-cache-18.0 │ │ └── oe-npm-cache │ ├── nodejs-oe-cache-native_18.0.bb │ ├── nodejs │ │ ├── 0001-Disable-running-gyp-files-for-bundled-deps.patch │ │ ├── 0001-Using-native-binaries.patch │ │ ├── 0001-fix-build-with-gcc-13.patch │ │ ├── 0001-liftoff-Correct-function-signatures.patch │ │ ├── 0001-mips-Use-32bit-cast-for-operand-on-mips32.patch │ │ ├── 0001-ppc64-Do-not-use-mminimal-toc-with-clang.patch │ │ ├── 0004-v8-don-t-override-ARM-CFLAGS.patch │ │ ├── big-endian.patch │ │ ├── libatomic.patch │ │ ├── mips-less-memory.patch │ │ ├── run-ptest │ │ └── system-c-ares.patch │ └── nodejs_18.0.0.bb ├── openocd │ ├── openocd │ │ ├── 0001-autosetup-cc-check-tools-check-only-the-name.patch │ │ ├── Dubhe_FPGA_openocd.patch │ │ ├── dubhe_olimex-openocd_s5.cfg │ │ ├── dubhe_olimex_flash_write.cfg │ │ ├── jh8100_0150_f1.cfg │ │ ├── jh8100_0150_f2.cfg │ │ └── jh8100_jrc.cfg │ ├── openocd_riscv.bb │ └── openocd_riscv.bbappend └── qemu │ ├── nativesdk-qemu-helper_1.0.bb │ ├── qemu-helper-native_1.0.bb │ ├── qemu-helper │ ├── qemu-oe-bridge-helper.c │ └── tunctl.c │ ├── qemu-native.inc │ ├── qemu-native_7.2.0.bb │ ├── qemu-system-native_7.2.0.bb │ ├── qemu-targets.inc │ ├── qemu.inc │ ├── qemu │ ├── 0001-Add-four-cache-csr-instruction.patch │ ├── 0001-Revert-linux-user-add-more-compat-ioctl-definitions.patch │ ├── 0001-configure-Fix-check-tcg-not-executing-any-tests.patch │ ├── 0001-contrib-vhost-user-blk-Replace-lseek64-with-lseek.patch │ ├── 0001-qemu-Add-addition-environment-space-to-boot-loader-q.patch │ ├── 0002-Fix-cache-instruction-bug.patch │ ├── 0002-Revert-linux-user-fix-compat-with-glibc-2.36-sys-mou.patch │ ├── 0002-chardev-connect-socket-to-a-spawned-command.patch │ ├── 0002-linux-user-Replace-use-of-lfs64-related-functions-an.patch │ ├── 0003-apic-fixup-fallthrough-to-PIC.patch │ ├── 0003-duhhe-bare-metal-sdk-support-based-on-sifive_u.patch │ ├── 0004-configure-Add-pkg-config-handling-for-libgcrypt.patch │ ├── 0004-display-system-call-name.patch │ ├── 0005-Upgrade-CLINT-implementation-to-ACLINT-and-Misc.patch │ ├── 0005-qemu-Do-not-include-file-if-not-exists.patch │ ├── 0006-block-Handle-curl-7.55.0-7.85.0-version-changes.patch │ ├── 0006-qemu-Add-some-user-space-mmap-tweaks-to-address-musl.patch │ ├── 0007-qemu-Determinism-fixes.patch │ ├── 0008-tests-meson.build-use-relative-path-to-refer-to-file.patch │ ├── 0009-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch │ ├── 0010-hw-pvrdma-Protect-against-buggy-or-malicious-guest-d.patch │ ├── cross.patch │ ├── powerpc_rom.bin │ ├── qemu-7.0.0-glibc-2.36.patch │ ├── qemu-guest-agent.init │ ├── qemu-guest-agent.udev │ └── run-ptest │ ├── qemu_7.2.0.bb │ └── qemuwrapper-cross_1.0.bb ├── recipes-extended ├── helloworld │ ├── files │ │ └── helloworld.c │ └── helloworld_0.1.bb ├── ivykis │ ├── ivykis │ │ ├── Makefile │ │ └── run-ptest │ └── ivykis_0.42.4.bb ├── kvmtool │ ├── files │ │ ├── 0001-kvmtool-9p-fixed-compilation-error.patch │ │ ├── 0002-kvmtool-add-EXTRA_CFLAGS-variable.patch │ │ ├── 0003-kvmtool-Werror-disabled.patch │ │ └── external-crosscompiler.patch │ └── kvmtool.bb ├── lua-cjson │ ├── lua-cjson │ │ └── run-ptest │ └── lua-cjson_2.1.0.11.bb ├── mnn │ ├── mnn │ │ ├── 0001-fix-build-with-gcc-13.patch │ │ └── run-ptest │ └── mnn_2.6.0.bb ├── muparser │ ├── muparser │ │ └── run-ptest │ └── muparser_2.3.2.bb └── rt-tests │ ├── files │ ├── 0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch │ ├── rt_bmark.py │ └── run-ptest │ ├── hwlatdetect_git.bb │ ├── rt-tests.inc │ └── rt-tests_git.bb ├── recipes-graphics ├── drivers │ ├── files │ │ └── img-gpu-powervr-bin-1.17.6210866.tar.gz │ └── visionfive2-pvr-graphics_1.17.bb ├── libsdl2 │ └── libsdl2_%.bbappend ├── mesa │ ├── mesa-pvr.inc │ ├── mesa-pvr │ │ ├── 0001-Add-pvr-dri-driver.patch │ │ ├── 0002-Force-Mesa-to-use-the-PVR-driver-for-platform-device.patch │ │ ├── 0003-dri-Add-some-new-DRI-formats-and-fourccs.patch │ │ ├── 0004-GL_EXT_sparse_texture-entry-points.patch │ │ ├── 0005-Add-support-for-various-GLES-extensions.patch │ │ ├── 0006-Add-EGL_IMG_cl_image-extension.patch │ │ ├── 0007-egl-Be-stricter-when-making-a-context-current-withou.patch │ │ ├── 0008-egl-optimise-eglMakeCurrent-for-the-case-where-nothi.patch │ │ ├── 0009-GL_EXT_shader_pixel_local_storage2-entry-points.patch │ │ ├── 0010-GL_IMG_framebuffer_downsample-entry-points.patch │ │ ├── 0011-GL_OVR_multiview-entry-points.patch │ │ ├── 0012-Add-OVR_multiview_multisampled_render_to_texture.patch │ │ ├── 0013-wayland-drm-install-wayland-drm.xml-to-the-configure.patch │ │ ├── 0014-Enable-buffer-sharing-in-the-kms_swrast-driver.patch │ │ ├── 0015-egl-wayland-add-support-for-RGB565-back-buffers.patch │ │ ├── 0016-egl-dri3-fix-segfault-in-eglCopyBuffers.patch │ │ ├── 0017-egl-automatically-call-eglReleaseThread-on-thread-te.patch │ │ ├── 0018-egl-add-Tizen-platform-support.patch │ │ ├── 0019-egl-add-support-for-EGL_TIZEN_image_native_surface.patch │ │ ├── 0020-egl-wayland-post-maximum-damage-when-blitting.patch │ │ ├── 0021-egl-wayland-flush-the-drawable-before-blitting.patch │ │ ├── 0022-egl-tizen-create-an-internal-_EGLImage-for-each-tbm-.patch │ │ ├── 0023-dri-use-a-supported-API-in-driCreateNewContext.patch │ │ ├── 0024-gbm-add-gbm_bo_blit.patch │ │ ├── 0025-gbm-don-t-assert-if-DRI-context-creation-fails.patch │ │ ├── 0026-egl-wayland-add-pbuffer-support.patch │ │ ├── 0027-egl-tizen-support-DRI-driver-handling-of-swap-preser.patch │ │ ├── 0028-egl-eglBindAPI-workaround-for-dEQP-bug.patch │ │ ├── 0029-GL_EXT_multi_draw_indirect-entry-points.patch │ │ ├── 0030-dri-add-support-for-YUV-DRI-config.patch │ │ ├── 0031-egl-add-support-for-EXT_yuv_surface.patch │ │ ├── 0032-dri-add-missing-__DRI_IMAGE_COMPONENTS-define-for-EG.patch │ │ ├── 0033-egl-wayland-expose-EXT_yuv_surface-support.patch │ │ ├── 0034-egl-tizen-expose-EXT_yuv_surface-support.patch │ │ ├── 0035-gbm-add-some-new-GBM-formats.patch │ │ ├── 0036-egl-add-null-platform.patch │ │ ├── 0037-egl-add-config-debug-printout.patch │ │ ├── 0038-egl-add-support-for-EXT_image_gl_colorspace.patch │ │ ├── 0039-meson-force-C-2011-for-thread_local.patch │ │ ├── 0040-dri2-add-support-for-swap-intervals-other-than-1.patch │ │ ├── 0041-null_platform-add-support-for-explicit-synchronisati.patch │ │ ├── 0042-egl-null-add-support-for-DRM-image-format-modifiers.patch │ │ ├── 0043-egl-query-the-supported-ES2-context-version.patch │ │ ├── 0044-meson-allow-libGL-to-be-built-without-GLX.patch │ │ ├── 0045-egl-wayland-process-non-resized-window-movement.patch │ │ ├── 0046-Separate-EXT_framebuffer_object-from-ARB-version.patch │ │ ├── 0047-egl-null-add-support-for-async-flip-with-front-buffe.patch │ │ ├── 0048-gbm-add-pbuffer-support.patch │ │ ├── 0049-egl-null-expose-EXT_yuv_surface-support.patch │ │ ├── 0050-dri-preserve-the-original-FD-for-driver-use.patch │ │ ├── 0051-egl-wayland-a-linear-buffer-is-not-needed-with-DRM-f.patch │ │ ├── 0052-dri3-a-linear-buffer-is-not-needed-with-DRM-format-m.patch │ │ ├── 0053-egl-drm-add-support-for-DRI_PRIME-GPU-selection.patch │ │ ├── 0054-egl-null-add-support-for-DRI_PRIME-GPU-selection.patch │ │ ├── 0055-egl-null-introduce-NULL_DRM_DISPLAY.patch │ │ ├── 0056-vulkan-wsi-check-the-DRI3-and-Present-XCB-reply-poin.patch │ │ ├── 0057-vulkan-wsi-Allow-host-visible-memory-to-be-requested.patch │ │ ├── 0058-vulkan-wsi-make-the-display-FD-available.patch │ │ ├── 0059-pvr-wsi-add-PowerVR-Vulkan-WSI-library.patch │ │ ├── 0060-vulkan-wsi-Disable-use-of-VK_EXT_pci_bus_info.patch │ │ ├── 0061-vulkan-wsi-default-to-force_bgra8_unorm_first-true.patch │ │ ├── 0062-vulkan-wsi-enable-additional-formats-for-Wayland.patch │ │ ├── 0063-vulkan-wsi-enable-additional-formats-for-Display.patch │ │ ├── 0064-mesa-main-dri-add-YUV420_3PLANE-and-YVU420_3PLANE.patch │ │ ├── 0065-egl-null-add-support-for-YU12-and-YV12.patch │ │ ├── 0066-mesa-partially-revert-pbuffer-attribute-removal.patch │ │ ├── 0067-egl_dri2-set-pbuffer-config-attribs-to-0-for-non-pbu.patch │ │ └── 0068-GL_ARB_geometry_shader4-entry-points.patch │ └── mesa-pvr_21.2.1.bb ├── wayland │ ├── weston │ │ ├── 0001-backend-drm-disable-bo-geometry-out-of-bounds-messag.patch │ │ ├── 0001-tests-Add-dependency-on-screenshooter-client-protocol.patch │ │ ├── 0002-meson-fix-failure-to-find-libudev-when-linking-the-c.patch │ │ ├── 0003-libweston-reduce-checks-for-dmabufs-with-DRM-modifie.patch │ │ ├── 0004-tests-test-client-depends-on-libudev.patch │ │ ├── 0005-backend-drm-allow-linear-framebuffers-if-no-KMS-modi.patch │ │ ├── 0006-weston-set-primary-drm.patch │ │ ├── 0007-support-mirror-mode.patch │ │ ├── 0008-weston-support-hotplug.patch │ │ ├── 0009-weston-add-input-event.patch │ │ └── 0010-weston-calibrate-touch-coordinate.patch │ └── weston_%.bbappend ├── x11-common │ ├── files │ │ ├── xserver-nodm-local.conf.in │ │ └── xserver-nodm-local.service.in │ └── xserver-nodm-init_%.bbappend └── xorg-xserver │ ├── xserver-xf86-config │ └── xorg.conf │ ├── xserver-xf86-config_%.bbappend │ ├── xserver-xorg.inc │ ├── xserver-xorg_%.bbappend │ ├── xserver-xorg_1.20.13.bb │ ├── xserver-xorg_1.20.13 │ ├── 0001-Avoid-duplicate-definitions-of-IOPortBase.patch │ ├── 0001-Fix-segfault-on-probing-a-non-PCI-platform-device-on.patch │ ├── 0001-drmmode_display.c-add-missing-mi.h-include.patch │ ├── 0001-test-xtest-Initialize-array-with-braces.patch │ ├── 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch │ ├── pkgconfig.patch │ └── sdksyms-no-build-path.patch │ ├── xserver-xorg_21.1.4.bb │ └── xserver-xorg_21.1.4 │ ├── 0001-Avoid-duplicate-definitions-of-IOPortBase.patch │ ├── 0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch │ ├── 0001-xkb-fix-some-possible-memleaks-in-XkbGetKbdByName.patch │ └── 0001-xkb-proof-GetCountedString-against-request-length-at.patch ├── recipes-httpd └── nginx │ └── nginx_%.bbappend ├── recipes-kernel ├── firmware │ ├── initramfs-img-gpu-firmware.bb │ ├── linux-firmware-visionfive2-wave420l.bb │ └── linux-firmware-visionfive2-wave511.bb ├── linux │ ├── files │ │ ├── 0001-riscv-fix-building-external-modules.patch │ │ ├── cpio.cfg │ │ ├── jh8100.cfg │ │ └── vf2.cfg │ ├── linux-mainline-common.inc │ ├── linux-starfive-dev_5.15.bb │ └── linux-starfive-dev_6.6.bb ├── modules │ ├── jpu-module.bb │ ├── jpu-module │ │ └── Makefile │ ├── vdec-module.bb │ ├── vdec-module │ │ └── Makefile │ ├── venc-module.bb │ └── venc-module │ │ └── Makefile └── perf │ ├── perf-perl.inc │ ├── perf.bb │ ├── perf.bbappend │ └── perf │ └── sort-pmuevents.py ├── recipes-multimedia ├── ffmpeg │ └── ffmpeg_%.bbappend ├── gstreamer │ ├── gst-devtools │ │ └── 0001-connect-has-a-different-signature-on-musl.patch │ ├── gst-devtools_1.22.8.bb │ ├── gst-examples │ │ ├── 0001-Make-player-examples-installable.patch │ │ └── gst-player.desktop │ ├── gst-examples_1.18.6.bb │ ├── gstreamer1.0-libav_1.22.8.bb │ ├── gstreamer1.0-meta-base.bb │ ├── gstreamer1.0-omx_1.22.8.bb │ ├── gstreamer1.0-plugins-bad │ │ ├── 0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch │ │ ├── 0002-avoid-including-sys-poll.h-directly.patch │ │ └── 0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch │ ├── gstreamer1.0-plugins-bad_1.22.8.bb │ ├── gstreamer1.0-plugins-base │ │ ├── 0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch │ │ ├── 0002-ssaparse-enhance-SSA-text-lines-parsing.patch │ │ └── 0003-viv-fb-Make-sure-config.h-is-included.patch │ ├── gstreamer1.0-plugins-base_1.22.8.bb │ ├── gstreamer1.0-plugins-common.inc │ ├── gstreamer1.0-plugins-good │ │ ├── 0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch │ │ └── 0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch │ ├── gstreamer1.0-plugins-good_1.22.8.bb │ ├── gstreamer1.0-plugins-license.inc │ ├── gstreamer1.0-plugins-packaging.inc │ ├── gstreamer1.0-plugins-ugly_1.22.8.bb │ ├── gstreamer1.0-python_1.22.8.bb │ ├── gstreamer1.0-rtsp-server_1.22.8.bb │ ├── gstreamer1.0-vaapi_1.22.8.bb │ ├── gstreamer1.0 │ │ ├── 0001-tests-respect-the-idententaion-used-in-meson.patch │ │ ├── 0002-tests-add-support-for-install-the-tests.patch │ │ ├── 0003-tests-use-a-dictionaries-for-environment.patch │ │ ├── 0004-tests-add-helper-script-to-run-the-installed_tests.patch │ │ └── run-ptest │ └── gstreamer1.0_1.22.8.bb ├── v4l2apps │ ├── v4l-utils │ │ ├── 0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch │ │ ├── 0002-original-patch-mediactl-pkgconfig.patch │ │ ├── 0003-original-patch-export-mediactl-headers.patch │ │ └── 0004-Do-not-use-getsubopt.patch │ └── v4l-utils_1.24.1.bb └── vpu │ ├── libsf-codaj12.bb │ ├── libsf-codaj12 │ ├── 20_jpu.rules │ └── codaj12_yocto.mak │ ├── libsf-omxil.bb │ ├── libsf-omxil │ └── CMakeLists.txt │ ├── libsf-wave420l.bb │ ├── libsf-wave420l │ ├── 20_venc.rules │ └── WaveEncoder_yocto.mak │ ├── libsf-wave511.bb │ └── libsf-wave511 │ ├── 20_vdec.rules │ └── WaveDecode_yocto.mak ├── recipes-support ├── i3c-tools │ ├── files │ │ └── i3c-tools │ │ │ ├── i3ctransfer.c │ │ │ └── include │ │ │ └── i3c │ │ │ ├── device.h │ │ │ └── i3cdev.h │ └── i3c-tools_0.1.bb └── isl │ ├── isl.inc │ └── isl_0.24.bb ├── setup.sh ├── tools └── manifests │ └── starfive.xml └── wic ├── starfive-dubhe.wks ├── starfive-jh8100.wks └── starfive-visionfive2.wks /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/README.md -------------------------------------------------------------------------------- /conf/layer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/conf/layer.conf -------------------------------------------------------------------------------- /conf/machine/starfive-dubhe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/conf/machine/starfive-dubhe.conf -------------------------------------------------------------------------------- /conf/machine/starfive-jh8100.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/conf/machine/starfive-jh8100.conf -------------------------------------------------------------------------------- /conf/machine/starfive-visionfive2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/conf/machine/starfive-visionfive2.conf -------------------------------------------------------------------------------- /recipes-benchmark/coremark/coremark_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-benchmark/coremark/coremark_1.0.bb -------------------------------------------------------------------------------- /recipes-benchmark/coremark/files/0001-Add-Compiler-Flags-and-remove-exe-from-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-benchmark/coremark/files/0001-Add-Compiler-Flags-and-remove-exe-from-output.patch -------------------------------------------------------------------------------- /recipes-benchmark/dhrystone/dhrystone/0001-Remove-prompt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-benchmark/dhrystone/dhrystone/0001-Remove-prompt.patch -------------------------------------------------------------------------------- /recipes-benchmark/dhrystone/dhrystone_2.1.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-benchmark/dhrystone/dhrystone_2.1.bbappend -------------------------------------------------------------------------------- /recipes-bsp/common/visionfive2-firmware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/common/visionfive2-firmware.inc -------------------------------------------------------------------------------- /recipes-bsp/deploy-bootfiles/deploy-bootfiles_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/deploy-bootfiles/deploy-bootfiles_0.1.bb -------------------------------------------------------------------------------- /recipes-bsp/deploy-bootfiles/files/bootcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/deploy-bootfiles/files/bootcode.bin -------------------------------------------------------------------------------- /recipes-bsp/deploy-bootfiles/files/bootcode_min.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/deploy-bootfiles/files/bootcode_min.bin -------------------------------------------------------------------------------- /recipes-bsp/deploy-bootfiles/files/bootjump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/deploy-bootfiles/files/bootjump.bin -------------------------------------------------------------------------------- /recipes-bsp/firmware/files/hifi4_elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/firmware/files/hifi4_elf -------------------------------------------------------------------------------- /recipes-bsp/firmware/firmware-hifi4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/firmware/firmware-hifi4.bb -------------------------------------------------------------------------------- /recipes-bsp/opensbi/files/0001-Makefile-Don-t-specify-mabi-or-march.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/files/0001-Makefile-Don-t-specify-mabi-or-march.patch -------------------------------------------------------------------------------- /recipes-bsp/opensbi/files/visionfive2-uboot-fit-image.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/files/visionfive2-uboot-fit-image.its -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi-payloads.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/opensbi-payloads.inc -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/opensbi_%.bbappend -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi_1.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/opensbi_1.2.bb -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi_1.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/opensbi_1.4.bb -------------------------------------------------------------------------------- /recipes-bsp/opensbi/opensbi_1.5.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/opensbi/opensbi_1.5.1.bb -------------------------------------------------------------------------------- /recipes-bsp/starfive-tool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/starfive-tool/LICENSE -------------------------------------------------------------------------------- /recipes-bsp/starfive-tool/files/jh8100_cst.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/starfive-tool/files/jh8100_cst.tar.gz -------------------------------------------------------------------------------- /recipes-bsp/starfive-tool/spltool-native_1.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/starfive-tool/spltool-native_1.0.0.bb -------------------------------------------------------------------------------- /recipes-bsp/starfive-tool/starfive-tool.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/starfive-tool/starfive-tool.bb -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/0001-include-configs-starfive-dubhe-fpga.h-Mask-ttyS0-and.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/0001-include-configs-starfive-dubhe-fpga.h-Mask-ttyS0-and.patch -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/firmware.bin.normal.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/firmware.bin.normal.out -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/jh8100-fpga.bin.normal.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/jh8100-fpga.bin.normal.out -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/run_qemu_virt.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/run_qemu_virt.dtb -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/tftp-mmc-boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/tftp-mmc-boot.txt -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/uboot.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/uboot.env -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/uboot_disable_logo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/uboot_disable_logo.patch -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/vf2_nvme_uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/vf2_nvme_uEnv.txt -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/vf2_uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/vf2_uEnv.txt -------------------------------------------------------------------------------- /recipes-bsp/u-boot/files/visionfive2-fit-image.its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/files/visionfive2-fit-image.its -------------------------------------------------------------------------------- /recipes-bsp/u-boot/u-boot-starfive.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-bsp/u-boot/u-boot-starfive.bb -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp.inc -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0001-define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0001-define-macro-_PATH_DHCPD_CONF-and-_PATH_DHCLIENT_CON.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0001-workaround-busybox-limitation-in-linux-dhclient-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0001-workaround-busybox-limitation-in-linux-dhclient-script.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0002-dhclient-dbus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0002-dhclient-dbus.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0003-link-with-lcrypto.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0003-link-with-lcrypto.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0004-Fix-out-of-tree-builds.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0004-Fix-out-of-tree-builds.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0005-dhcp-client-fix-invoke-dhclient-script-failed-on-Rea.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0005-dhcp-client-fix-invoke-dhclient-script-failed-on-Rea.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0007-Add-configure-argument-to-make-the-libxml2-dependenc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0007-Add-configure-argument-to-make-the-libxml2-dependenc.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0009-remove-dhclient-script-bash-dependency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0009-remove-dhclient-script-bash-dependency.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0012-dhcp-correct-the-intention-for-xml2-lib-search.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0013-fixup_use_libbind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0013-fixup_use_libbind.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/0027-Add-missed-sd-notify-patch-to-manage-dhcpd-with-syst.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/0027-Add-missed-sd-notify-patch-to-manage-dhcpd-with-syst.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/add-riscv-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/add-riscv-support.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp/bind.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp/bind.tar.gz -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp_%.bbappend -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/dhcp_4.4.3.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/dhcp_4.4.3.bb -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/default-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/default-relay -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/default-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/default-server -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhclient-systemd-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhclient-systemd-wrapper -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhclient.conf -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhclient.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhclient.service -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhcp-CLOEXEC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhcp-CLOEXEC.patch -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhcpd.conf -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhcpd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhcpd.service -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhcpd6.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhcpd6.service -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/dhcrelay.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/dhcrelay.service -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/init-relay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/init-relay -------------------------------------------------------------------------------- /recipes-connectivity/dhcp/files/init-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/dhcp/files/init-server -------------------------------------------------------------------------------- /recipes-connectivity/slirp/libslirp_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/slirp/libslirp_git.bb -------------------------------------------------------------------------------- /recipes-connectivity/sshpass/sshpass_1.06.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-connectivity/sshpass/sshpass_1.06.bb -------------------------------------------------------------------------------- /recipes-core/busybox/busybox/fragment.cfg: -------------------------------------------------------------------------------- 1 | # Sun Dec 26 16:55:55 2021 2 | CONFIG_CTTYHACK=y 3 | -------------------------------------------------------------------------------- /recipes-core/busybox/busybox_%.bbappend: -------------------------------------------------------------------------------- 1 | FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:" 2 | SRC_URI += "file://fragment.cfg" 3 | -------------------------------------------------------------------------------- /recipes-core/glibc/cross-localedef-native_2.39.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/cross-localedef-native_2.39.bb -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-collateral.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-collateral.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-common.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-ld.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-ld.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-locale.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-locale.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-locale_2.39.bb: -------------------------------------------------------------------------------- 1 | require glibc-locale.inc 2 | -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-mtrace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-mtrace.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-mtrace_2.39.bb: -------------------------------------------------------------------------------- 1 | require glibc-mtrace.inc 2 | -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-package.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-package.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-scripts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-scripts.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-scripts_2.39.bb: -------------------------------------------------------------------------------- 1 | require glibc-scripts.inc 2 | -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-tests.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-tests.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-testsuite_2.39.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-testsuite_2.39.bb -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-version.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc-y2038-tests_2.39.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc-y2038-tests_2.39.bb -------------------------------------------------------------------------------- /recipes-core/glibc/glibc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc.inc -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0001-localedef-Add-hardlink-resolver-from-util-linux.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0001-localedef-Add-hardlink-resolver-from-util-linux.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0001-riscv-Add-Linux-hwprobe-syscall-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0001-riscv-Add-Linux-hwprobe-syscall-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0002-linux-Introduce-INTERNAL_VSYSCALL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0002-linux-Introduce-INTERNAL_VSYSCALL.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0002-localedef-fix-ups-hardlink-to-make-it-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0002-localedef-fix-ups-hardlink-to-make-it-compile.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0003-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0003-nativesdk-glibc-Look-for-host-system-ld.so.cache-as-.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0003-riscv-Add-hwprobe-vdso-call-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0003-riscv-Add-hwprobe-vdso-call-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0004-nativesdk-glibc-Fix-buffer-overrun-with-a-relocated-.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0005-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0005-nativesdk-glibc-Raise-the-size-of-arrays-containing-.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0005-riscv-Enable-multi-arg-ifunc-resolvers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0005-riscv-Enable-multi-arg-ifunc-resolvers.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0006-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0006-nativesdk-glibc-Allow-64-bit-atomics-for-x86.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0007-nativesdk-glibc-Make-relocatable-install-for-locales.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0008-nativesdk-glibc-Fall-back-to-faccessat-on-faccess2-r.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0008-nativesdk-glibc-Fall-back-to-faccessat-on-faccess2-r.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0009-riscv-Add-vector-version-memcpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0009-riscv-Add-vector-version-memcpy.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0009-yes-within-the-path-sets-wrong-config-variables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0009-yes-within-the-path-sets-wrong-config-variables.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0010-eglibc-Cross-building-and-testing-instructions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0010-eglibc-Cross-building-and-testing-instructions.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0010-riscv-Optimize-memchr-with-vector-b-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0010-riscv-Optimize-memchr-with-vector-b-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0011-eglibc-Help-bootstrap-cross-toolchain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0011-eglibc-Help-bootstrap-cross-toolchain.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0011-riscv-Optimize-memcmp-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0011-riscv-Optimize-memcmp-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0012-eglibc-Resolve-__fpscr_values-on-SH4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0012-eglibc-Resolve-__fpscr_values-on-SH4.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0012-riscv-Optimize-memmove-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0012-riscv-Optimize-memmove-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0013-eglibc-Forward-port-cross-locale-generation-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0013-eglibc-Forward-port-cross-locale-generation-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0013-riscv-Optimize-strlen-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0013-riscv-Optimize-strlen-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0014-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0014-localedef-add-to-archive-uses-a-hard-coded-locale-pa.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0014-riscv-Optimize-strcmp-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0014-riscv-Optimize-strcmp-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0015-powerpc-Do-not-ask-compiler-for-finding-arch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0015-powerpc-Do-not-ask-compiler-for-finding-arch.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0015-riscv-Optimize-memset-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0015-riscv-Optimize-memset-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0016-wordsize.h-Unify-the-header-between-arm-and-aarch64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0016-wordsize.h-Unify-the-header-between-arm-and-aarch64.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0017-Replace-echo-with-printf-builtin-in-nscd-init-script.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0017-Replace-echo-with-printf-builtin-in-nscd-init-script.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0018-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0018-sysdeps-gnu-configure.ac-Set-libc_cv_rootsbindir-onl.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0019-timezone-Make-shell-interpreter-overridable-in-tzsel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0019-timezone-Make-shell-interpreter-overridable-in-tzsel.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0020-tzselect.ksh-Use-bin-sh-default-shell-interpreter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0020-tzselect.ksh-Use-bin-sh-default-shell-interpreter.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0021-fix-create-thread-failed-in-unprivileged-process-BZ-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0021-fix-create-thread-failed-in-unprivileged-process-BZ-.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0022-Avoid-hardcoded-build-time-paths-in-the-output-binar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0022-Avoid-hardcoded-build-time-paths-in-the-output-binar.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/0023-qemu-stale-process.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/0023-qemu-stale-process.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/check-test-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/check-test-wrapper -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/etc/ld.so.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/etc/ld.so.conf -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/generate-supported.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/generate-supported.mk -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/makedbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/makedbs.sh -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/run-ptest -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0001-riscv-Add-Linux-hwprobe-syscall-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0001-riscv-Add-Linux-hwprobe-syscall-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0002-linux-Introduce-INTERNAL_VSYSCALL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0002-linux-Introduce-INTERNAL_VSYSCALL.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0003-riscv-Add-hwprobe-vdso-call-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0003-riscv-Add-hwprobe-vdso-call-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0004-riscv-Add-__riscv_hwprobe-pointer-to-ifunc-calls.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0005-riscv-Enable-multi-arg-ifunc-resolvers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0005-riscv-Enable-multi-arg-ifunc-resolvers.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0006-riscv-Add-ifunc-helper-method-to-hwprobe.h.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0007-riscv-Add-and-use-alignment-ignorant-memcpy.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0008-riscv-Fix-alignment-ignorant-memcpy-implementation.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0009-riscv-Add-vector-version-memcpy.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0009-riscv-Add-vector-version-memcpy.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0010-riscv-Optimize-memchr-with-vector-b-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0010-riscv-Optimize-memchr-with-vector-b-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0011-riscv-Optimize-memcmp-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0011-riscv-Optimize-memcmp-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0012-riscv-Optimize-memmove-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0012-riscv-Optimize-memmove-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0013-riscv-Optimize-strlen-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0013-riscv-Optimize-strlen-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0014-riscv-Optimize-strcmp-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0014-riscv-Optimize-strcmp-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0015-riscv-Optimize-memset-with-vector-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0015-riscv-Optimize-memset-with-vector-extension.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0016-riscv-Prevent-from-generating-ifunc-code-when-static.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc/starfive/0017-Fix-bcmp-missing-in-so.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc/starfive/0017-Fix-bcmp-missing-in-so.patch -------------------------------------------------------------------------------- /recipes-core/glibc/glibc_2.39.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc_2.39.bb -------------------------------------------------------------------------------- /recipes-core/glibc/glibc_2.39.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/glibc_2.39.bbappend -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/32and64bit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/32and64bit.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/README -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/add-64-bit-flag-for-ELF64-entries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/add-64-bit-flag-for-ELF64-entries.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/add-riscv-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/add-riscv-support.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/endian-ness_handling_fix.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/endianess-header.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/endianess-header.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/flag_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/flag_fix.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-default-to-all-multilib-dirs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-default-to-all-multilib-dirs.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-handle-.dynstr-located-in-separate-segment.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-handle-.dynstr-located-in-separate-segment.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-native-2.12.1.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig-native-2.12.1.tar.bz2 -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/ldconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/ldconfig_aux-cache_path_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/ldconfig_aux-cache_path_fix.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native-2.12.1/no-aux-cache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native-2.12.1/no-aux-cache.patch -------------------------------------------------------------------------------- /recipes-core/glibc/ldconfig-native_2.12.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/glibc/ldconfig-native_2.12.1.bb -------------------------------------------------------------------------------- /recipes-core/images/core-image-minimal-initramfs.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/core-image-minimal-initramfs.bbappend -------------------------------------------------------------------------------- /recipes-core/images/core-image-minimal-xfce.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/core-image-minimal-xfce.bbappend -------------------------------------------------------------------------------- /recipes-core/images/core-image-minimal.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/core-image-minimal.bbappend -------------------------------------------------------------------------------- /recipes-core/images/core-image-starfive-extra.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/core-image-starfive-extra.bb -------------------------------------------------------------------------------- /recipes-core/images/dubhe-image-initramfs.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/dubhe-image-initramfs.bb -------------------------------------------------------------------------------- /recipes-core/images/initramfs-module-install_1.0.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/initramfs-module-install_1.0.bbappend -------------------------------------------------------------------------------- /recipes-core/images/sd-image.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/images/sd-image.inc -------------------------------------------------------------------------------- /recipes-core/initrdscripts/files/init-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/initrdscripts/files/init-boot.sh -------------------------------------------------------------------------------- /recipes-core/initrdscripts/initramfs-boot_1.0.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/initrdscripts/initramfs-boot_1.0.bbappend -------------------------------------------------------------------------------- /recipes-core/meta/meta-extsdk-toolchain.bbappend: -------------------------------------------------------------------------------- 1 | DEPENDS:append = " clang-cross-${TARGET_ARCH}" 2 | -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-starfive-c.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/packagegroups/packagegroup-starfive-c.bb -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-starfive-dubhe-essentials.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/packagegroups/packagegroup-starfive-dubhe-essentials.bb -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-starfive-essentials.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/packagegroups/packagegroup-starfive-essentials.bb -------------------------------------------------------------------------------- /recipes-core/packagegroups/packagegroup-starfive-toolchain.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-core/packagegroups/packagegroup-starfive-toolchain.bb -------------------------------------------------------------------------------- /recipes-crypto/libkcapi/files/0002-hasher-symlink.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-crypto/libkcapi/files/0002-hasher-symlink.patch -------------------------------------------------------------------------------- /recipes-crypto/libkcapi/libkcapi_1.5.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-crypto/libkcapi/libkcapi_1.5.0.bb -------------------------------------------------------------------------------- /recipes-crypto/libkcapi/libkcapi_1.5.0.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-crypto/libkcapi/libkcapi_1.5.0.bbappend -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-2.43.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-2.43.inc -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-cross-canadian.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-cross-canadian.inc -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-cross-canadian_2.43.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-cross-canadian_2.43.bb -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-cross.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-cross.inc -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-cross_2.43.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-cross_2.43.bb -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-crosssdk_2.43.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-crosssdk_2.43.bb -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils-testsuite_2.43.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils-testsuite_2.43.bb -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils.inc -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0001-binutils-crosssdk-Generate-relocatable-SDKs.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0002-binutils-cross-Do-not-generate-linker-script-directo.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0003-binutils-nativesdk-Search-for-alternative-ld.so.conf.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0004-Point-scripts-location-to-libdir.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0005-don-t-let-the-distro-compiler-point-to-the-wrong-ins.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0006-warn-for-uses-of-system-directories-when-cross-linki.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0007-fix-the-incorrect-assembling-for-ppc-wait-mnemonic.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0008-Use-libtool-2.4.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0009-Fix-rpath-in-libtool-when-sysroot-is-enabled.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0010-sync-with-OE-libtool-changes.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0011-Check-for-clang-before-checking-gcc-version.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0012-Only-generate-an-RPATH-entry-if-LD_RUN_PATH-is-not-e.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0013-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/0014-Remove-duplicate-pe-dll.o-entry-deom-targ_extra_ofil.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/starfive/0001-gas-riscv-Add-customer-pref-instruction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/starfive/0001-gas-riscv-Add-customer-pref-instruction.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/starfive/0002-gas-riscv-Add-customer-CSR-instructions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/starfive/0002-gas-riscv-Add-customer-CSR-instructions.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils/starfive/0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils/starfive/0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch -------------------------------------------------------------------------------- /recipes-devtools/binutils/binutils_2.43.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/binutils/binutils_2.43.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/clang-cross-canadian_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang-cross-canadian_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/clang-cross_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang-cross_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/clang-crosssdk_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang-crosssdk_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/clang.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang.inc -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0001-libcxxabi-Find-libunwind-headers-when-LIBCXXABI_LIBU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0001-libcxxabi-Find-libunwind-headers-when-LIBCXXABI_LIBU.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0002-compiler-rt-support-a-new-embedded-linux-target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0002-compiler-rt-support-a-new-embedded-linux-target.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0003-compiler-rt-Simplify-cross-compilation.-Don-t-use-na.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0003-compiler-rt-Simplify-cross-compilation.-Don-t-use-na.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0004-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0004-llvm-TargetLibraryInfo-Undefine-libc-functions-if-th.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0005-llvm-allow-env-override-of-exe-and-libdir-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0005-llvm-allow-env-override-of-exe-and-libdir-path.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0006-clang-driver-Check-sysroot-for-ldso-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0006-clang-driver-Check-sysroot-for-ldso-path.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0007-clang-Driver-tools.cpp-Add-lssp_nonshared-on-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0007-clang-Driver-tools.cpp-Add-lssp_nonshared-on-musl.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0008-clang-Prepend-trailing-to-sysroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0008-clang-Prepend-trailing-to-sysroot.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0009-clang-Look-inside-the-target-sysroot-for-compiler-ru.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0009-clang-Look-inside-the-target-sysroot-for-compiler-ru.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0010-clang-Define-releative-gcc-installation-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0010-clang-Define-releative-gcc-installation-dir.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0011-clang-Add-lpthread-and-ldl-along-with-lunwind-for-st.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0011-clang-Add-lpthread-and-ldl-along-with-lunwind-for-st.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0012-Pass-PYTHON_EXECUTABLE-when-cross-compiling-for-nati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0012-Pass-PYTHON_EXECUTABLE-when-cross-compiling-for-nati.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0013-Check-for-atomic-double-intrinsics.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0013-Check-for-atomic-double-intrinsics.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0014-libcxx-Add-compiler-runtime-library-to-link-step-for.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0014-libcxx-Add-compiler-runtime-library-to-link-step-for.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0015-clang-llvm-cmake-Fix-configure-for-packages-using-fi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0015-clang-llvm-cmake-Fix-configure-for-packages-using-fi.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0016-clang-Fix-resource-dir-location-for-cross-toolchains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0016-clang-Fix-resource-dir-location-for-cross-toolchains.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0017-clang-driver-Add-dyld-prefix-when-checking-sysroot-f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0017-clang-driver-Add-dyld-prefix-when-checking-sysroot-f.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0018-clang-Use-python3-in-python-scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0018-clang-Use-python3-in-python-scripts.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0019-For-x86_64-set-Yocto-based-GCC-install-search-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0019-For-x86_64-set-Yocto-based-GCC-install-search-path.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0020-llvm-Do-not-use-find_library-for-ncurses.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0020-llvm-Do-not-use-find_library-for-ncurses.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0021-llvm-Insert-anchor-for-adding-OE-distro-vendor-names.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0021-llvm-Insert-anchor-for-adding-OE-distro-vendor-names.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0022-compiler-rt-Do-not-use-backtrace-APIs-on-non-glibc-l.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0022-compiler-rt-Do-not-use-backtrace-APIs-on-non-glibc-l.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0023-clang-Fix-x86-triple-for-non-debian-multiarch-linux-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0023-clang-Fix-x86-triple-for-non-debian-multiarch-linux-.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0024-libunwind-Added-unw_backtrace-method.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0024-libunwind-Added-unw_backtrace-method.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0025-clang-Do-not-use-install-relative-libc-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0025-clang-Do-not-use-install-relative-libc-headers.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0026-clang-Fix-how-driver-finds-GCC-installation-path-on-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0026-clang-Fix-how-driver-finds-GCC-installation-path-on-.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0027-Fix-lib-paths-for-OpenEmbedded-Host.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0027-Fix-lib-paths-for-OpenEmbedded-Host.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0028-Correct-library-search-path-for-OpenEmbedded-Host.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0028-Correct-library-search-path-for-OpenEmbedded-Host.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0029-lldb-Link-with-libatomic-on-x86.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0029-lldb-Link-with-libatomic-on-x86.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0030-compiler-rt-Enable-__int128-for-ppc32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0030-compiler-rt-Enable-__int128-for-ppc32.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0031-llvm-Do-not-use-cmake-infra-to-detect-libzstd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0031-llvm-Do-not-use-cmake-infra-to-detect-libzstd.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0032-compiler-rt-Fix-stat-struct-s-size-for-O32-ABI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0032-compiler-rt-Fix-stat-struct-s-size-for-O32-ABI.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0033-compiler-rt-Undef-_TIME_BITS-along-with-_FILE_OFFSET.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0033-compiler-rt-Undef-_TIME_BITS-along-with-_FILE_OFFSET.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0034-ToolChains-Gnu.cpp-ARMLibDirs-search-also-in-lib32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0034-ToolChains-Gnu.cpp-ARMLibDirs-search-also-in-lib32.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0035-compiler-rt-Fix-cmake-check-for-_Float16-and-__bf16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0035-compiler-rt-Fix-cmake-check-for-_Float16-and-__bf16.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/0036-llvm-Add-libunwind.pc.in-and-llvm-config-scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/0036-llvm-Add-libunwind.pc.in-and-llvm-config-scripts.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0001-Add-support-for-Starfive-private-pref-instruction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0001-Add-support-for-Starfive-private-pref-instruction.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0002-Add-support-for-Starfive-private-CSR-instructions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0002-Add-support-for-Starfive-private-CSR-instructions.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0003-Support-type-conversion-between-fixed-vector-and-sca.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0003-Support-type-conversion-between-fixed-vector-and-sca.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0004-Support-old-b-letter-represents-for-B-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0004-Support-old-b-letter-represents-for-B-extension.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0005-Keep-old-register-definitions-because-Dubhe-follow-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0005-Keep-old-register-definitions-because-Dubhe-follow-o.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0006-Align-bare-metal-multilib-directories-with-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0006-Align-bare-metal-multilib-directories-with-gcc.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang/starfive/0007-Align-default-march-string-with-GCC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang/starfive/0007-Align-default-march-string-with-GCC.patch -------------------------------------------------------------------------------- /recipes-devtools/clang/clang_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/clang_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/common-source.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/common-source.inc -------------------------------------------------------------------------------- /recipes-devtools/clang/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/common.inc -------------------------------------------------------------------------------- /recipes-devtools/clang/compiler-rt-sanitizers_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/compiler-rt-sanitizers_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/compiler-rt_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/compiler-rt_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/libclc_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/libclc_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/libcxx_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/libcxx_git.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/llvm-project-source.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/llvm-project-source.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/llvm-project-source.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/llvm-project-source.bbappend -------------------------------------------------------------------------------- /recipes-devtools/clang/llvm-project-source.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/llvm-project-source.inc -------------------------------------------------------------------------------- /recipes-devtools/clang/nativesdk-clang-glue.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/nativesdk-clang-glue.bb -------------------------------------------------------------------------------- /recipes-devtools/clang/openmp_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/clang/openmp_git.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-14.2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-14.2.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-14.2.inc.ori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-14.2.inc.ori -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-common.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-configure-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-configure-common.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-cross-canadian.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-cross-canadian.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-cross-canadian_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-cross-canadian_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-cross.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-cross.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-cross_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-cross_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-crosssdk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-crosssdk.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-crosssdk_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-crosssdk_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-multilib-config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-multilib-config.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-runtime.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-runtime.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-runtime_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-runtime_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-sanitizers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-sanitizers.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-sanitizers_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-sanitizers_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-shared-source.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-shared-source.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-source.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-source.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-source_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-source_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-target.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-target.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc-testsuite.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc-testsuite.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0001-gcc-4.3.1-ARCH_FLAGS_FOR_TARGET.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0002-gcc-poison-system-directories.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0002-gcc-poison-system-directories.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0003-64-bit-multilib-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0003-64-bit-multilib-hack.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0004-Pass-CXXFLAGS_FOR_BUILD-in-a-couple-of-places-to-avo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0004-Pass-CXXFLAGS_FOR_BUILD-in-a-couple-of-places-to-avo.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0005-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0005-Use-the-defaults.h-in-B-instead-of-S-and-t-oe-in-B.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0006-cpp-honor-sysroot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0006-cpp-honor-sysroot.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0007-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0007-Define-GLIBC_DYNAMIC_LINKER-and-UCLIBC_DYNAMIC_LINKE.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0008-libtool.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0008-libtool.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0009-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0009-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0010-Use-the-multilib-config-files-from-B-instead-of-usin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0010-Use-the-multilib-config-files-from-B-instead-of-usin.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0011-aarch64-Fix-include-paths-when-S-B.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0011-aarch64-Fix-include-paths-when-S-B.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0012-Avoid-using-libdir-from-.la-which-usually-points-to-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0012-Avoid-using-libdir-from-.la-which-usually-points-to-.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0013-Ensure-target-gcc-headers-can-be-included.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0013-Ensure-target-gcc-headers-can-be-included.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0014-Don-t-search-host-directory-during-relink-if-inst_pr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0014-Don-t-search-host-directory-during-relink-if-inst_pr.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0015-libcc1-fix-libcc1-s-install-path-and-rpath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0015-libcc1-fix-libcc1-s-install-path-and-rpath.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0016-handle-sysroot-support-for-nativesdk-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0016-handle-sysroot-support-for-nativesdk-gcc.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0017-Search-target-sysroot-gcc-version-specific-dirs-with.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0017-Search-target-sysroot-gcc-version-specific-dirs-with.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0018-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0018-Add-ssp_nonshared-to-link-commandline-for-musl-targe.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0019-Re-introduce-spe-commandline-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0019-Re-introduce-spe-commandline-options.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0020-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0020-libgcc_s-Use-alias-for-__cpu_indicator_init-instead-.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0021-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0021-gentypes-genmodes-Do-not-use-__LINE__-for-maintainin.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0022-libatomic-Do-not-enforce-march-on-aarch64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0022-libatomic-Do-not-enforce-march-on-aarch64.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0023-Fix-install-path-of-linux64.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0023-Fix-install-path-of-linux64.h.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0024-Avoid-hardcoded-build-paths-into-ppc-libgcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0024-Avoid-hardcoded-build-paths-into-ppc-libgcc.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/0025-gcc-testsuite-tweaks-for-mips-OE.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0001-RISCV-Support-b-letter-for-representation-of-B-exten.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0001-RISCV-Support-b-letter-for-representation-of-B-exten.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0002-RISCV-Add-multilib-config-for-baremetal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0002-RISCV-Add-multilib-config-for-baremetal.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0003-default-enable-align-functions-16-and-align-loops-8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0003-default-enable-align-functions-16-and-align-loops-8.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0004-RISCV-Fix-multilib-config-for-baremetal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0004-RISCV-Fix-multilib-config-for-baremetal.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0005-ira-Increase-the-frequency-of-BB-in-inner-loop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0005-ira-Increase-the-frequency-of-BB-in-inner-loop.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0006-add-xstcmo-option-and-starfive-dubhe-core.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0006-add-xstcmo-option-and-starfive-dubhe-core.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc/starfive/0007-add-starfive-dubhe-fusion-patterns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc/starfive/0007-add-starfive-dubhe-fusion-patterns.patch -------------------------------------------------------------------------------- /recipes-devtools/gcc/gcc_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/gcc_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgcc-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgcc-common.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgcc-initial.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgcc-initial.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgcc-initial_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgcc-initial_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgcc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgcc.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgcc_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgcc_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgfortran.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgfortran.inc -------------------------------------------------------------------------------- /recipes-devtools/gcc/libgfortran_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gcc/libgfortran_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb-common.inc -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb-cross-canadian.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb-cross-canadian.inc -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb-cross-canadian_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb-cross-canadian_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb-cross.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb-cross.inc -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb-cross_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb-cross_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb.inc -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0001-mips-linux-nat-Define-_ABIO32-if-not-defined.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0001-mips-linux-nat-Define-_ABIO32-if-not-defined.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0002-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0002-ppc-ptrace-Define-pt_regs-uapi_pt_regs-on-GLIBC-syst.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0003-Dont-disable-libreadline.a-when-using-disable-static.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0003-Dont-disable-libreadline.a-when-using-disable-static.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0004-use-asm-sgidefs.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0004-use-asm-sgidefs.h.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0005-Change-order-of-CFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0005-Change-order-of-CFLAGS.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0007-Fix-invalid-sigprocmask-call.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0007-Fix-invalid-sigprocmask-call.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/0008-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/0008-Define-alignof-using-_Alignof-when-using-C11-or-newe.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/starfive/0001-gas-riscv-Add-customer-pref-instruction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/starfive/0001-gas-riscv-Add-customer-pref-instruction.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/starfive/0002-gas-riscv-Add-customer-CSR-instructions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/starfive/0002-gas-riscv-Add-customer-CSR-instructions.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb/starfive/0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb/starfive/0003-add-xstcmo-option-to-manage-StarFive-Technology-proc.patch -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb_14.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb_14.2.bb -------------------------------------------------------------------------------- /recipes-devtools/gdb/gdb_14.2.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/gdb/gdb_14.2.bbappend -------------------------------------------------------------------------------- /recipes-devtools/llvm/llvm/0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/llvm/llvm/0001-AsmMatcherEmitter-sort-ClassInfo-lists-by-name-as-we.patch -------------------------------------------------------------------------------- /recipes-devtools/llvm/llvm/0002-llvm-Fix-CVE-2024-0151.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/llvm/llvm/0002-llvm-Fix-CVE-2024-0151.patch -------------------------------------------------------------------------------- /recipes-devtools/llvm/llvm/0007-llvm-allow-env-override-of-exe-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/llvm/llvm/0007-llvm-allow-env-override-of-exe-path.patch -------------------------------------------------------------------------------- /recipes-devtools/llvm/llvm/llvm-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/llvm/llvm/llvm-config -------------------------------------------------------------------------------- /recipes-devtools/llvm/llvm_18.1.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/llvm/llvm_18.1.8.bb -------------------------------------------------------------------------------- /recipes-devtools/luajit/luajit-riscv/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/luajit/luajit-riscv/0001-Do-not-strip-automatically-this-leaves-the-stripping.patch -------------------------------------------------------------------------------- /recipes-devtools/luajit/luajit-riscv/0002-original-patch-riscv-cross-compile-support.patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/luajit/luajit-riscv/0002-original-patch-riscv-cross-compile-support.patch.patch -------------------------------------------------------------------------------- /recipes-devtools/luajit/luajit-riscv/clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/luajit/luajit-riscv/clang.patch -------------------------------------------------------------------------------- /recipes-devtools/luajit/luajit-riscv/riscv-cross-compile-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/luajit/luajit-riscv/riscv-cross-compile-support.patch -------------------------------------------------------------------------------- /recipes-devtools/luajit/luajit-riscv_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/luajit/luajit-riscv_git.bb -------------------------------------------------------------------------------- /recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson/0001-Make-CPU-family-warnings-fatal.patch -------------------------------------------------------------------------------- /recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson/0001-python-module-do-not-manipulate-the-environment-when.patch -------------------------------------------------------------------------------- /recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson/0002-Support-building-allarch-recipes-again.patch -------------------------------------------------------------------------------- /recipes-devtools/meson/meson/meson-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson/meson-setup.py -------------------------------------------------------------------------------- /recipes-devtools/meson/meson/meson-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson/meson-wrapper -------------------------------------------------------------------------------- /recipes-devtools/meson/meson_1.3.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/meson/meson_1.3.1.bb -------------------------------------------------------------------------------- /recipes-devtools/mtd/mtd-utils_git.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/mtd/mtd-utils_git.bbappend -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs-oe-cache-18.0/oe-npm-cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs-oe-cache-18.0/oe-npm-cache -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs-oe-cache-native_18.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs-oe-cache-native_18.0.bb -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-Disable-running-gyp-files-for-bundled-deps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-Disable-running-gyp-files-for-bundled-deps.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-Using-native-binaries.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-Using-native-binaries.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-fix-build-with-gcc-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-fix-build-with-gcc-13.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-liftoff-Correct-function-signatures.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-liftoff-Correct-function-signatures.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-mips-Use-32bit-cast-for-operand-on-mips32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-mips-Use-32bit-cast-for-operand-on-mips32.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0001-ppc64-Do-not-use-mminimal-toc-with-clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0001-ppc64-Do-not-use-mminimal-toc-with-clang.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/0004-v8-don-t-override-ARM-CFLAGS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/0004-v8-don-t-override-ARM-CFLAGS.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/big-endian.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/big-endian.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/libatomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/libatomic.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/mips-less-memory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/mips-less-memory.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./cctest 4 | -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs/system-c-ares.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs/system-c-ares.patch -------------------------------------------------------------------------------- /recipes-devtools/nodejs/nodejs_18.0.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/nodejs/nodejs_18.0.0.bb -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/0001-autosetup-cc-check-tools-check-only-the-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/0001-autosetup-cc-check-tools-check-only-the-name.patch -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/Dubhe_FPGA_openocd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/Dubhe_FPGA_openocd.patch -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/dubhe_olimex-openocd_s5.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/dubhe_olimex-openocd_s5.cfg -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/dubhe_olimex_flash_write.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/dubhe_olimex_flash_write.cfg -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/jh8100_0150_f1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/jh8100_0150_f1.cfg -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/jh8100_0150_f2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/jh8100_0150_f2.cfg -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd/jh8100_jrc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd/jh8100_jrc.cfg -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd_riscv.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd_riscv.bb -------------------------------------------------------------------------------- /recipes-devtools/openocd/openocd_riscv.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/openocd/openocd_riscv.bbappend -------------------------------------------------------------------------------- /recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/nativesdk-qemu-helper_1.0.bb -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-helper-native_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-helper-native_1.0.bb -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-helper/qemu-oe-bridge-helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-helper/qemu-oe-bridge-helper.c -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-helper/tunctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-helper/tunctl.c -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-native.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-native.inc -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-native_7.2.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-native_7.2.0.bb -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-system-native_7.2.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-system-native_7.2.0.bb -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu-targets.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu-targets.inc -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu.inc -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0001-Add-four-cache-csr-instruction.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0001-Add-four-cache-csr-instruction.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0001-Revert-linux-user-add-more-compat-ioctl-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0001-Revert-linux-user-add-more-compat-ioctl-definitions.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0001-configure-Fix-check-tcg-not-executing-any-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0001-configure-Fix-check-tcg-not-executing-any-tests.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0001-contrib-vhost-user-blk-Replace-lseek64-with-lseek.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0001-contrib-vhost-user-blk-Replace-lseek64-with-lseek.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0001-qemu-Add-addition-environment-space-to-boot-loader-q.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0001-qemu-Add-addition-environment-space-to-boot-loader-q.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0002-Fix-cache-instruction-bug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0002-Fix-cache-instruction-bug.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0002-Revert-linux-user-fix-compat-with-glibc-2.36-sys-mou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0002-Revert-linux-user-fix-compat-with-glibc-2.36-sys-mou.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0002-chardev-connect-socket-to-a-spawned-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0002-chardev-connect-socket-to-a-spawned-command.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0002-linux-user-Replace-use-of-lfs64-related-functions-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0002-linux-user-Replace-use-of-lfs64-related-functions-an.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0003-apic-fixup-fallthrough-to-PIC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0003-apic-fixup-fallthrough-to-PIC.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0003-duhhe-bare-metal-sdk-support-based-on-sifive_u.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0003-duhhe-bare-metal-sdk-support-based-on-sifive_u.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0004-configure-Add-pkg-config-handling-for-libgcrypt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0004-configure-Add-pkg-config-handling-for-libgcrypt.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0004-display-system-call-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0004-display-system-call-name.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0005-Upgrade-CLINT-implementation-to-ACLINT-and-Misc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0005-Upgrade-CLINT-implementation-to-ACLINT-and-Misc.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0005-qemu-Do-not-include-file-if-not-exists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0005-qemu-Do-not-include-file-if-not-exists.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0006-block-Handle-curl-7.55.0-7.85.0-version-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0006-block-Handle-curl-7.55.0-7.85.0-version-changes.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0006-qemu-Add-some-user-space-mmap-tweaks-to-address-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0006-qemu-Add-some-user-space-mmap-tweaks-to-address-musl.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0007-qemu-Determinism-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0007-qemu-Determinism-fixes.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0008-tests-meson.build-use-relative-path-to-refer-to-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0008-tests-meson.build-use-relative-path-to-refer-to-file.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0009-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0009-Define-MAP_SYNC-and-MAP_SHARED_VALIDATE-on-needed-li.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/0010-hw-pvrdma-Protect-against-buggy-or-malicious-guest-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/0010-hw-pvrdma-Protect-against-buggy-or-malicious-guest-d.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/cross.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/powerpc_rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/powerpc_rom.bin -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/qemu-7.0.0-glibc-2.36.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/qemu-7.0.0-glibc-2.36.patch -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/qemu-guest-agent.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/qemu-guest-agent.init -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/qemu-guest-agent.udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/qemu-guest-agent.udev -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu/run-ptest -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemu_7.2.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemu_7.2.0.bb -------------------------------------------------------------------------------- /recipes-devtools/qemu/qemuwrapper-cross_1.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-devtools/qemu/qemuwrapper-cross_1.0.bb -------------------------------------------------------------------------------- /recipes-extended/helloworld/files/helloworld.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(){ 4 | printf("Hello World!!!\n"); 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /recipes-extended/helloworld/helloworld_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/helloworld/helloworld_0.1.bb -------------------------------------------------------------------------------- /recipes-extended/ivykis/ivykis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/ivykis/ivykis/Makefile -------------------------------------------------------------------------------- /recipes-extended/ivykis/ivykis/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/ivykis/ivykis/run-ptest -------------------------------------------------------------------------------- /recipes-extended/ivykis/ivykis_0.42.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/ivykis/ivykis_0.42.4.bb -------------------------------------------------------------------------------- /recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/kvmtool/files/0001-kvmtool-9p-fixed-compilation-error.patch -------------------------------------------------------------------------------- /recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/kvmtool/files/0002-kvmtool-add-EXTRA_CFLAGS-variable.patch -------------------------------------------------------------------------------- /recipes-extended/kvmtool/files/0003-kvmtool-Werror-disabled.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/kvmtool/files/0003-kvmtool-Werror-disabled.patch -------------------------------------------------------------------------------- /recipes-extended/kvmtool/files/external-crosscompiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/kvmtool/files/external-crosscompiler.patch -------------------------------------------------------------------------------- /recipes-extended/kvmtool/kvmtool.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/kvmtool/kvmtool.bb -------------------------------------------------------------------------------- /recipes-extended/lua-cjson/lua-cjson/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/lua-cjson/lua-cjson/run-ptest -------------------------------------------------------------------------------- /recipes-extended/lua-cjson/lua-cjson_2.1.0.11.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/lua-cjson/lua-cjson_2.1.0.11.bb -------------------------------------------------------------------------------- /recipes-extended/mnn/mnn/0001-fix-build-with-gcc-13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/mnn/mnn/0001-fix-build-with-gcc-13.patch -------------------------------------------------------------------------------- /recipes-extended/mnn/mnn/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | ./run_test.out 4 | -------------------------------------------------------------------------------- /recipes-extended/mnn/mnn_2.6.0.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/mnn/mnn_2.6.0.bb -------------------------------------------------------------------------------- /recipes-extended/muparser/muparser/run-ptest: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | 3 | ./t_ParserTest 4 | -------------------------------------------------------------------------------- /recipes-extended/muparser/muparser_2.3.2.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/muparser/muparser_2.3.2.bb -------------------------------------------------------------------------------- /recipes-extended/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/rt-tests/files/0001-Makefile-Allow-for-CC-and-AR-to-be-overridden.patch -------------------------------------------------------------------------------- /recipes-extended/rt-tests/files/rt_bmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/rt-tests/files/rt_bmark.py -------------------------------------------------------------------------------- /recipes-extended/rt-tests/files/run-ptest: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | python3 ./rt_bmark.py 4 | -------------------------------------------------------------------------------- /recipes-extended/rt-tests/hwlatdetect_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/rt-tests/hwlatdetect_git.bb -------------------------------------------------------------------------------- /recipes-extended/rt-tests/rt-tests.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/rt-tests/rt-tests.inc -------------------------------------------------------------------------------- /recipes-extended/rt-tests/rt-tests_git.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-extended/rt-tests/rt-tests_git.bb -------------------------------------------------------------------------------- /recipes-graphics/drivers/files/img-gpu-powervr-bin-1.17.6210866.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/drivers/files/img-gpu-powervr-bin-1.17.6210866.tar.gz -------------------------------------------------------------------------------- /recipes-graphics/drivers/visionfive2-pvr-graphics_1.17.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/drivers/visionfive2-pvr-graphics_1.17.bb -------------------------------------------------------------------------------- /recipes-graphics/libsdl2/libsdl2_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/libsdl2/libsdl2_%.bbappend -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr.inc -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0001-Add-pvr-dri-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0001-Add-pvr-dri-driver.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0002-Force-Mesa-to-use-the-PVR-driver-for-platform-device.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0002-Force-Mesa-to-use-the-PVR-driver-for-platform-device.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0003-dri-Add-some-new-DRI-formats-and-fourccs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0003-dri-Add-some-new-DRI-formats-and-fourccs.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0004-GL_EXT_sparse_texture-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0004-GL_EXT_sparse_texture-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0005-Add-support-for-various-GLES-extensions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0005-Add-support-for-various-GLES-extensions.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0006-Add-EGL_IMG_cl_image-extension.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0006-Add-EGL_IMG_cl_image-extension.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0007-egl-Be-stricter-when-making-a-context-current-withou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0007-egl-Be-stricter-when-making-a-context-current-withou.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0008-egl-optimise-eglMakeCurrent-for-the-case-where-nothi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0008-egl-optimise-eglMakeCurrent-for-the-case-where-nothi.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0009-GL_EXT_shader_pixel_local_storage2-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0009-GL_EXT_shader_pixel_local_storage2-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0010-GL_IMG_framebuffer_downsample-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0010-GL_IMG_framebuffer_downsample-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0011-GL_OVR_multiview-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0011-GL_OVR_multiview-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0012-Add-OVR_multiview_multisampled_render_to_texture.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0012-Add-OVR_multiview_multisampled_render_to_texture.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0013-wayland-drm-install-wayland-drm.xml-to-the-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0013-wayland-drm-install-wayland-drm.xml-to-the-configure.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0014-Enable-buffer-sharing-in-the-kms_swrast-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0014-Enable-buffer-sharing-in-the-kms_swrast-driver.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0015-egl-wayland-add-support-for-RGB565-back-buffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0015-egl-wayland-add-support-for-RGB565-back-buffers.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0016-egl-dri3-fix-segfault-in-eglCopyBuffers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0016-egl-dri3-fix-segfault-in-eglCopyBuffers.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0017-egl-automatically-call-eglReleaseThread-on-thread-te.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0017-egl-automatically-call-eglReleaseThread-on-thread-te.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0018-egl-add-Tizen-platform-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0018-egl-add-Tizen-platform-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0019-egl-add-support-for-EGL_TIZEN_image_native_surface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0019-egl-add-support-for-EGL_TIZEN_image_native_surface.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0020-egl-wayland-post-maximum-damage-when-blitting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0020-egl-wayland-post-maximum-damage-when-blitting.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0021-egl-wayland-flush-the-drawable-before-blitting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0021-egl-wayland-flush-the-drawable-before-blitting.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0022-egl-tizen-create-an-internal-_EGLImage-for-each-tbm-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0022-egl-tizen-create-an-internal-_EGLImage-for-each-tbm-.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0023-dri-use-a-supported-API-in-driCreateNewContext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0023-dri-use-a-supported-API-in-driCreateNewContext.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0024-gbm-add-gbm_bo_blit.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0024-gbm-add-gbm_bo_blit.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0025-gbm-don-t-assert-if-DRI-context-creation-fails.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0025-gbm-don-t-assert-if-DRI-context-creation-fails.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0026-egl-wayland-add-pbuffer-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0026-egl-wayland-add-pbuffer-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0027-egl-tizen-support-DRI-driver-handling-of-swap-preser.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0027-egl-tizen-support-DRI-driver-handling-of-swap-preser.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0028-egl-eglBindAPI-workaround-for-dEQP-bug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0028-egl-eglBindAPI-workaround-for-dEQP-bug.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0029-GL_EXT_multi_draw_indirect-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0029-GL_EXT_multi_draw_indirect-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0030-dri-add-support-for-YUV-DRI-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0030-dri-add-support-for-YUV-DRI-config.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0031-egl-add-support-for-EXT_yuv_surface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0031-egl-add-support-for-EXT_yuv_surface.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0032-dri-add-missing-__DRI_IMAGE_COMPONENTS-define-for-EG.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0032-dri-add-missing-__DRI_IMAGE_COMPONENTS-define-for-EG.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0033-egl-wayland-expose-EXT_yuv_surface-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0033-egl-wayland-expose-EXT_yuv_surface-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0034-egl-tizen-expose-EXT_yuv_surface-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0034-egl-tizen-expose-EXT_yuv_surface-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0035-gbm-add-some-new-GBM-formats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0035-gbm-add-some-new-GBM-formats.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0036-egl-add-null-platform.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0036-egl-add-null-platform.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0037-egl-add-config-debug-printout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0037-egl-add-config-debug-printout.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0038-egl-add-support-for-EXT_image_gl_colorspace.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0038-egl-add-support-for-EXT_image_gl_colorspace.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0039-meson-force-C-2011-for-thread_local.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0039-meson-force-C-2011-for-thread_local.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0040-dri2-add-support-for-swap-intervals-other-than-1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0040-dri2-add-support-for-swap-intervals-other-than-1.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0041-null_platform-add-support-for-explicit-synchronisati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0041-null_platform-add-support-for-explicit-synchronisati.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0042-egl-null-add-support-for-DRM-image-format-modifiers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0042-egl-null-add-support-for-DRM-image-format-modifiers.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0043-egl-query-the-supported-ES2-context-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0043-egl-query-the-supported-ES2-context-version.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0044-meson-allow-libGL-to-be-built-without-GLX.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0044-meson-allow-libGL-to-be-built-without-GLX.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0045-egl-wayland-process-non-resized-window-movement.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0045-egl-wayland-process-non-resized-window-movement.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0046-Separate-EXT_framebuffer_object-from-ARB-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0046-Separate-EXT_framebuffer_object-from-ARB-version.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0047-egl-null-add-support-for-async-flip-with-front-buffe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0047-egl-null-add-support-for-async-flip-with-front-buffe.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0048-gbm-add-pbuffer-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0048-gbm-add-pbuffer-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0049-egl-null-expose-EXT_yuv_surface-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0049-egl-null-expose-EXT_yuv_surface-support.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0050-dri-preserve-the-original-FD-for-driver-use.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0050-dri-preserve-the-original-FD-for-driver-use.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0051-egl-wayland-a-linear-buffer-is-not-needed-with-DRM-f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0051-egl-wayland-a-linear-buffer-is-not-needed-with-DRM-f.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0052-dri3-a-linear-buffer-is-not-needed-with-DRM-format-m.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0052-dri3-a-linear-buffer-is-not-needed-with-DRM-format-m.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0053-egl-drm-add-support-for-DRI_PRIME-GPU-selection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0053-egl-drm-add-support-for-DRI_PRIME-GPU-selection.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0054-egl-null-add-support-for-DRI_PRIME-GPU-selection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0054-egl-null-add-support-for-DRI_PRIME-GPU-selection.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0055-egl-null-introduce-NULL_DRM_DISPLAY.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0055-egl-null-introduce-NULL_DRM_DISPLAY.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0056-vulkan-wsi-check-the-DRI3-and-Present-XCB-reply-poin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0056-vulkan-wsi-check-the-DRI3-and-Present-XCB-reply-poin.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0057-vulkan-wsi-Allow-host-visible-memory-to-be-requested.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0057-vulkan-wsi-Allow-host-visible-memory-to-be-requested.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0058-vulkan-wsi-make-the-display-FD-available.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0058-vulkan-wsi-make-the-display-FD-available.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0059-pvr-wsi-add-PowerVR-Vulkan-WSI-library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0059-pvr-wsi-add-PowerVR-Vulkan-WSI-library.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0060-vulkan-wsi-Disable-use-of-VK_EXT_pci_bus_info.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0060-vulkan-wsi-Disable-use-of-VK_EXT_pci_bus_info.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0061-vulkan-wsi-default-to-force_bgra8_unorm_first-true.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0061-vulkan-wsi-default-to-force_bgra8_unorm_first-true.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0062-vulkan-wsi-enable-additional-formats-for-Wayland.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0062-vulkan-wsi-enable-additional-formats-for-Wayland.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0063-vulkan-wsi-enable-additional-formats-for-Display.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0063-vulkan-wsi-enable-additional-formats-for-Display.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0064-mesa-main-dri-add-YUV420_3PLANE-and-YVU420_3PLANE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0064-mesa-main-dri-add-YUV420_3PLANE-and-YVU420_3PLANE.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0065-egl-null-add-support-for-YU12-and-YV12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0065-egl-null-add-support-for-YU12-and-YV12.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0066-mesa-partially-revert-pbuffer-attribute-removal.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0066-mesa-partially-revert-pbuffer-attribute-removal.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0067-egl_dri2-set-pbuffer-config-attribs-to-0-for-non-pbu.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0067-egl_dri2-set-pbuffer-config-attribs-to-0-for-non-pbu.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr/0068-GL_ARB_geometry_shader4-entry-points.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/mesa/mesa-pvr/0068-GL_ARB_geometry_shader4-entry-points.patch -------------------------------------------------------------------------------- /recipes-graphics/mesa/mesa-pvr_21.2.1.bb: -------------------------------------------------------------------------------- 1 | require ${BPN}.inc 2 | 3 | -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0001-backend-drm-disable-bo-geometry-out-of-bounds-messag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0001-backend-drm-disable-bo-geometry-out-of-bounds-messag.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0001-tests-Add-dependency-on-screenshooter-client-protocol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0001-tests-Add-dependency-on-screenshooter-client-protocol.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0002-meson-fix-failure-to-find-libudev-when-linking-the-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0002-meson-fix-failure-to-find-libudev-when-linking-the-c.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0003-libweston-reduce-checks-for-dmabufs-with-DRM-modifie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0003-libweston-reduce-checks-for-dmabufs-with-DRM-modifie.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0004-tests-test-client-depends-on-libudev.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0004-tests-test-client-depends-on-libudev.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0005-backend-drm-allow-linear-framebuffers-if-no-KMS-modi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0005-backend-drm-allow-linear-framebuffers-if-no-KMS-modi.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0006-weston-set-primary-drm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0006-weston-set-primary-drm.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0007-support-mirror-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0007-support-mirror-mode.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0008-weston-support-hotplug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0008-weston-support-hotplug.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0009-weston-add-input-event.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0009-weston-add-input-event.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston/0010-weston-calibrate-touch-coordinate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston/0010-weston-calibrate-touch-coordinate.patch -------------------------------------------------------------------------------- /recipes-graphics/wayland/weston_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/wayland/weston_%.bbappend -------------------------------------------------------------------------------- /recipes-graphics/x11-common/files/xserver-nodm-local.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/x11-common/files/xserver-nodm-local.conf.in -------------------------------------------------------------------------------- /recipes-graphics/x11-common/files/xserver-nodm-local.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/x11-common/files/xserver-nodm-local.service.in -------------------------------------------------------------------------------- /recipes-graphics/x11-common/xserver-nodm-init_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/x11-common/xserver-nodm-init_%.bbappend -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xf86-config/xorg.conf -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xf86-config_%.bbappend -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg.inc -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_%.bbappend -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13.bb -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-Avoid-duplicate-definitions-of-IOPortBase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-Avoid-duplicate-definitions-of-IOPortBase.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-Fix-segfault-on-probing-a-non-PCI-platform-device-on.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-Fix-segfault-on-probing-a-non-PCI-platform-device-on.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-drmmode_display.c-add-missing-mi.h-include.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-drmmode_display.c-add-missing-mi.h-include.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-test-xtest-Initialize-array-with-braces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-test-xtest-Initialize-array-with-braces.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/pkgconfig.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/sdksyms-no-build-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_1.20.13/sdksyms-no-build-path.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_21.1.4.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_21.1.4.bb -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-Avoid-duplicate-definitions-of-IOPortBase.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-Avoid-duplicate-definitions-of-IOPortBase.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xf86pciBus.c-use-Intel-ddx-only-for-pre-gen4-hardwar.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xkb-fix-some-possible-memleaks-in-XkbGetKbdByName.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xkb-fix-some-possible-memleaks-in-XkbGetKbdByName.patch -------------------------------------------------------------------------------- /recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xkb-proof-GetCountedString-against-request-length-at.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-graphics/xorg-xserver/xserver-xorg_21.1.4/0001-xkb-proof-GetCountedString-against-request-length-at.patch -------------------------------------------------------------------------------- /recipes-httpd/nginx/nginx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-httpd/nginx/nginx_%.bbappend -------------------------------------------------------------------------------- /recipes-kernel/firmware/initramfs-img-gpu-firmware.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/firmware/initramfs-img-gpu-firmware.bb -------------------------------------------------------------------------------- /recipes-kernel/firmware/linux-firmware-visionfive2-wave420l.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/firmware/linux-firmware-visionfive2-wave420l.bb -------------------------------------------------------------------------------- /recipes-kernel/firmware/linux-firmware-visionfive2-wave511.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/firmware/linux-firmware-visionfive2-wave511.bb -------------------------------------------------------------------------------- /recipes-kernel/linux/files/0001-riscv-fix-building-external-modules.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/linux/files/0001-riscv-fix-building-external-modules.patch -------------------------------------------------------------------------------- /recipes-kernel/linux/files/cpio.cfg: -------------------------------------------------------------------------------- 1 | # CONFIG_INITRAMFS_SOURCE is not set 2 | -------------------------------------------------------------------------------- /recipes-kernel/linux/files/jh8100.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_DMATEST=y 2 | -------------------------------------------------------------------------------- /recipes-kernel/linux/files/vf2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/linux/files/vf2.cfg -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-mainline-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/linux/linux-mainline-common.inc -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-starfive-dev_5.15.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/linux/linux-starfive-dev_5.15.bb -------------------------------------------------------------------------------- /recipes-kernel/linux/linux-starfive-dev_6.6.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/linux/linux-starfive-dev_6.6.bb -------------------------------------------------------------------------------- /recipes-kernel/modules/jpu-module.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/jpu-module.bb -------------------------------------------------------------------------------- /recipes-kernel/modules/jpu-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/jpu-module/Makefile -------------------------------------------------------------------------------- /recipes-kernel/modules/vdec-module.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/vdec-module.bb -------------------------------------------------------------------------------- /recipes-kernel/modules/vdec-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/vdec-module/Makefile -------------------------------------------------------------------------------- /recipes-kernel/modules/venc-module.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/venc-module.bb -------------------------------------------------------------------------------- /recipes-kernel/modules/venc-module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/modules/venc-module/Makefile -------------------------------------------------------------------------------- /recipes-kernel/perf/perf-perl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/perf/perf-perl.inc -------------------------------------------------------------------------------- /recipes-kernel/perf/perf.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/perf/perf.bb -------------------------------------------------------------------------------- /recipes-kernel/perf/perf.bbappend: -------------------------------------------------------------------------------- 1 | EXTRA_OEMAKE += "NO_LIBTRACEEVENT=1" 2 | -------------------------------------------------------------------------------- /recipes-kernel/perf/perf/sort-pmuevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-kernel/perf/perf/sort-pmuevents.py -------------------------------------------------------------------------------- /recipes-multimedia/ffmpeg/ffmpeg_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/ffmpeg/ffmpeg_%.bbappend -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gst-devtools_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gst-devtools_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gst-examples/0001-Make-player-examples-installable.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gst-examples/gst-player.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gst-examples/gst-player.desktop -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gst-examples_1.18.6.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gst-examples_1.18.6.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-libav_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-meta-base.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0001-fix-maybe-uninitialized-warnings-when-compiling-with.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0002-avoid-including-sys-poll.h-directly.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0004-opencv-resolve-missing-opencv-data-dir-in-yocto-buil.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0001-ENGR00312515-get-caps-from-src-pad-when-query-caps.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0002-ssaparse-enhance-SSA-text-lines-parsing.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/0003-viv-fb-Make-sure-config.h-is-included.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-common.inc -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-qt-include-ext-qt-gstqtgl.h-instead-of-gst-gl-gstglf.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good/0001-v4l2-Define-ioctl_req_t-for-posix-linux-case.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-license.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-license.inc -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-packaging.inc -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-python_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-rtsp-server_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0-vaapi_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0/0001-tests-respect-the-idententaion-used-in-meson.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0/0002-tests-add-support-for-install-the-tests.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0/0003-tests-use-a-dictionaries-for-environment.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0/0004-tests-add-helper-script-to-run-the-installed_tests.patch -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0/run-ptest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0/run-ptest -------------------------------------------------------------------------------- /recipes-multimedia/gstreamer/gstreamer1.0_1.22.8.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/gstreamer/gstreamer1.0_1.22.8.bb -------------------------------------------------------------------------------- /recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/v4l2apps/v4l-utils/0001-Revert-media-ctl-Don-t-install-libmediactl-and-libv4.patch -------------------------------------------------------------------------------- /recipes-multimedia/v4l2apps/v4l-utils/0002-original-patch-mediactl-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/v4l2apps/v4l-utils/0002-original-patch-mediactl-pkgconfig.patch -------------------------------------------------------------------------------- /recipes-multimedia/v4l2apps/v4l-utils/0003-original-patch-export-mediactl-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/v4l2apps/v4l-utils/0003-original-patch-export-mediactl-headers.patch -------------------------------------------------------------------------------- /recipes-multimedia/v4l2apps/v4l-utils/0004-Do-not-use-getsubopt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/v4l2apps/v4l-utils/0004-Do-not-use-getsubopt.patch -------------------------------------------------------------------------------- /recipes-multimedia/v4l2apps/v4l-utils_1.24.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/v4l2apps/v4l-utils_1.24.1.bb -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-codaj12.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-codaj12.bb -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-codaj12/20_jpu.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="jpu", MODE="0666" 2 | -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-codaj12/codaj12_yocto.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-codaj12/codaj12_yocto.mak -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-omxil.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-omxil.bb -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-omxil/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-omxil/CMakeLists.txt -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave420l.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-wave420l.bb -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave420l/20_venc.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="venc", MODE="0666" 2 | -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave420l/WaveEncoder_yocto.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-wave420l/WaveEncoder_yocto.mak -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave511.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-wave511.bb -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave511/20_vdec.rules: -------------------------------------------------------------------------------- 1 | SUBSYSTEM=="vdec", MODE="0666" 2 | -------------------------------------------------------------------------------- /recipes-multimedia/vpu/libsf-wave511/WaveDecode_yocto.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-multimedia/vpu/libsf-wave511/WaveDecode_yocto.mak -------------------------------------------------------------------------------- /recipes-support/i3c-tools/files/i3c-tools/i3ctransfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/i3c-tools/files/i3c-tools/i3ctransfer.c -------------------------------------------------------------------------------- /recipes-support/i3c-tools/files/i3c-tools/include/i3c/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/i3c-tools/files/i3c-tools/include/i3c/device.h -------------------------------------------------------------------------------- /recipes-support/i3c-tools/files/i3c-tools/include/i3c/i3cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/i3c-tools/files/i3c-tools/include/i3c/i3cdev.h -------------------------------------------------------------------------------- /recipes-support/i3c-tools/i3c-tools_0.1.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/i3c-tools/i3c-tools_0.1.bb -------------------------------------------------------------------------------- /recipes-support/isl/isl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/isl/isl.inc -------------------------------------------------------------------------------- /recipes-support/isl/isl_0.24.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/recipes-support/isl/isl_0.24.bb -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/setup.sh -------------------------------------------------------------------------------- /tools/manifests/starfive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/tools/manifests/starfive.xml -------------------------------------------------------------------------------- /wic/starfive-dubhe.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/wic/starfive-dubhe.wks -------------------------------------------------------------------------------- /wic/starfive-jh8100.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/wic/starfive-jh8100.wks -------------------------------------------------------------------------------- /wic/starfive-visionfive2.wks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/starfive-tech/meta-starfive/HEAD/wic/starfive-visionfive2.wks --------------------------------------------------------------------------------