kernel uboot lk

uboot 裸机开发

裸机程序开发里有一种低成本方案,利用u-boot的TFTP和USB下载功能,将成程序下载到开发板的内存用go命令来运行。 只要最终结果是ARM机器指令即可。理论上u-boot也能直接运行内存中的ELF文件,它需要用 bootelf命令运行。不过我一般都是编译器直接转成bin文件来运行的。 因为u-b ......
裸机 uboot

imx8mm nxp 恩智浦 uboot 源码官网

之前的网址已经不能用了。 https://source.codeaurora.org/external/imx/imx-manifest 新的网址到了 github 上。 这个网址。 https://github.com/nxp-imx 然后可以下载对应版本的uboot . ......
源码 imx8mm uboot imx8 imx

[linux kernel] struct pid && the way the kernel used to cast uint32_t pid to struct task_struct

摘抄内容引用自linux kernel document description pre the initialization and the manage of the struct pid is use IDR.(implement by hash table->(why not array?- ......
struct kernel task_struct amp pid

Understanding the linux kernel Chapter2 Memory Addressing

Physical Memory Layout unavailable address for kernel either because they map hardware devices’ I/O shared memory or because the corresponding page fr ......

uboot-4_U-Boot启动流程

下面以u-boot 2016为例,一行一行分析armv7架构cpu的uboot启动流程,用到的soc是imx6ull为例。总体流程如下:分为2部分:arch级初始化(架构)和板级初始化: 1 reset 函数 1.1 初始化异常向量表 我们知道启动入口是 arch/arm/lib/vectors.S ......
流程 U-Boot uboot Boot

全志H3移植uboot

香橙派全志H3烧录Uboot,远程加载zImage,dtb,rootfs_全志h3可以刷什么-CSDN博客 //烧入uboot到sd中,通过tftp挂载linux内核 设备树 ,通过nfs来挂载根文件系统 香橙派全志H3烧入U-boot和Linux内核以及配置_香橙派3刷linux-CSDN博客 / ......
uboot

安装pytorch/安装jupyterlab并添加已创建环境的kernel

安装pytorch 先创建一个环境,去pytorch官网查找环境所用python版本对应的torch版本,并选择合适的下载命令,在已激活的环境中运行命令,即可安装成功。 安装jupyter jupyter可以按cell运行代码,并且可以边写代码边做笔记。运行conda install jupyter ......
jupyterlab pytorch 环境 kernel

ubuntu 18.04.6 编译内核kernel提示 Can't find default configuration "arch/x86/configs/socfpga_deconfig"!

输入make socfpga_defconfig 的时候提示: ubuntu 18.04.6 编译内核kernel提示 Can't find default configuration "arch/x86/configs/socfpga_deconfig"! 解决办法: export ARCH=ar ......

Kernel Memory 中使用 PaddleSharp OCR

Kernel Memory 中使用 PaddleSharp OCR Kernel Memory 中进行文档处理的时候可以上传图片作为文档,这时候就需要使用到 OCR 技术来识别图片中的文字。 官方默认的库中,提供了 Azure Document Intelligence 的扩展服务,可以通过 Azu ......
PaddleSharp Kernel Memory OCR

掌握语义内核(Semantic Kernel):如何精进你的提示词工程

在人工智能的海洋里,大型语言模型(LLM AI)是高速发展的一艘巨轮,而有效地与其沟通和指导其行为的锚,正是提示语(prompts)。提示语是我们提供给模型的输入或查询,以期获取特定的响应。当今,提示语工程(prompt engineering)已成为涌现的领域,它需要创造力和对细节的关注。接下来, ......
语义 内核 Semantic Kernel 工程

android-uboot驱动

uboot驱动,主要是根据标准的格式,按照框架写就行了,我这里平台是基于RK3588s android12 uboot驱动需要使用U_BOOT_DRIVER函数,添加各个回调 U_BOOT_DRIVER(dc_charge_fg) = { .name = "dc_charge_fg", .id = ......
android-uboot android uboot

Kernel su

管中窥豹 重要的kprobe和队列 $ grep -rn INIT_WORK ./ ./uid_observer.c:137: INIT_WORK(&ksu_update_uid_work, do_update_uid); ./ksud.c:563: INIT_WORK(&stop_vfs_read ......
Kernel su

Kernel Memory 入门系列:异步管道

Kernel Memory 入门系列:异步管道 前面所介绍的处理流程都是基于同步管道的,即文档导入的时候,会等到文档处理完成之后才会返回。 但是在实际的应用中,文档很多,而且文档的处理时间也不确定,如果采用同步的方式,那么就会导致整个流程的处理时间过长,也会导致整个流程的阻塞。因此,我们需要一种异步 ......
管道 Kernel Memory

Semantic Kernel入门学习文章合集

GitHub 卢老师的Cookbook https://github.com/kinfey/SemanticKernelCookBook?tab=readme-ov-file SK部落 https://mp.weixin.qq.com/s?__biz=MzI5MTg4NzIyNg==&mid=224 ......
Semantic Kernel 文章

Kernel Memory 入门系列:Semantic Kernel 插件

Kernel Memory 入门系列:Semantic Kernel 插件 Kernel Memory 本身提供了完整的RAG能力,这部分能力如果通过Semantic Kernel Memory的话,也是可以实现的,但是整体的管理成本会比较高。 因此通过Kernel Memory 构建知识库管理,然 ......
Kernel 插件 Semantic Memory

lk uboot传参到Kernel

记录一下内核和uboot的传参 MTK传参 1. 在 app/mt_boot/mt_boot.c使用cmdline_append(buf); snprintf(buf, 10,"vcom=%s", vcom_str); pal_log_err("%s\n", buf); cmdline_append ......
Kernel uboot lk

Kernel Memory 入门系列:自定义处理流程

Kernel Memory 入门系列:自定义处理流程 在整个文档预处理的流程中,涉及到很多的处理步骤,例如:文本提取,文本分片,向量化和存储。这些步骤是Kernel Memory中的默认提供的处理方法,如果有一些其他的需求,也可以进行过程的自定义。 自定义Handler 在Kernel Memory ......
流程 Kernel Memory

Kernel Memory 入门系列:文档的管理

Kernel Memory 入门系列: 文档的管理 在Quick Start中我们了解到如何快速直接地上传文档。当时实际中,往往会面临更多的问题,例如文档如何更新,如何划定查询范围等等。这里我们将详细介绍在Kernel Memory文档的管理。 使用Document管理一组文件 当我们需要批量上传一 ......
文档 Kernel Memory

Kernel Memory 入门系列:生成并获取文档摘要

Kernel Memory 入门系列:生成并获取文档摘要 前面在RAG和文档预处理的流程中,我们得到一个解决方案,可以让用户直接获取最终的问题答案。 但是实际的业务场景中,仍然存在一些基础的场景,不需要我们获取文档的所有详情的,而只是了解的文档的大概信息,得到文章整体的摘要或者总结,此时仍然可以使用 ......
摘要 文档 Kernel Memory

Semantic Kernel 正式发布 v1.0.1 版本

微软在2023年12月19日在博客上(Say hello to Semantic Kernel V1.0.1)发布了Semantic kernel的.NET 正式1.0.1版本。新版本提供了新的文档,以解释 SDK 创建 AI 代理的能力,这些代理可以与用户交互、回答问题、调用现有代码、自动化流程和 ......
Semantic 版本 Kernel 0.1 v1

Kernel Memory 入门系列:Kernel Memory Service

Kernel Memory 入门系列:Kernel Memory Service 在 Kernel Memory 的 GitHub 仓库中有一个单独的项目 Service , 用于提供独立的Kernel Memory OpenAPI 服务。可以用于独立的部署后台,也可以为其他语言提供接口调用服务。 ......
Kernel Memory Service

ubuntu 18.04.6 编译Preloader提示 没有规则可制作目标 /host_tools/altera/preloader/uboot-socfpga.tar.gz

生成spl_bsp后,在spl_bsp路径下输入make 提示:没有规则可制作目标 /host_tools/altera/preloader/uboot-socfpga.tar.gz 原来要先运行 ./embedded command shell.sh, 并在该窗口下 输入make ......

Kernel Memory 入门系列:快速开始

Kernel Memory 入门:Quick Start 了解了用户问答和文档预处理的流程之后,我们就可以直接开始使用Kernel Memory了。 1. 安装 项目中只需要通过NuGet安装Microsoft.KernelMemory.Core包即可。 dotnet add package Mic ......
Kernel Memory

Kernel Memory 入门系列:文档预处理

Kernel Memory 入门系列:文档预处理 Embedding为我们提供了问题理解和文档检索的方法,但是面对大量的文档,如果在用于提问的时候再进行文档的Embedding的话,那这个过程是非常耗时的,再加之我们的文档并不会频繁变化,所以我们可以对文档进行预处理,提升检索的效率。 文档的预处理大 ......
文档 Kernel Memory

ubuntu 18.04.6编译uboot提示error: bad value (‘generic-armv7-a’) for ‘-mtune=’ switch

按照按照 (https://rocketboards.org/foswiki/Documentation/EmbeddedLinuxBeginnerSGuide)制作了一个image当编译uboot的时候, 发送命令make: make socfpga_cyclone5_config make 得到 ......
generic-armv generic ubuntu switch uboot

Kernel Memory 入门系列: Embedding 简介

Kernel Memory 入门系列: Embedding 简介 在 RAG模式 其实留了一个问题。 我们对于的用户问题的理解和文档的检索并没有提供合适的方法。 当然我们可以通过相对比较传统的方法。 例如对用户的问题进行关键词提取,然后通过关键词检索文档。这样的话,就需要我们提前对文档做好相关关键词 ......
Embedding 简介 Kernel Memory

为什么EmbeddedLinuxBeginnerSGuide的image中 uboot一定要放在fat32分区,不能跟preloader一起放在raw分区?

按照按照 (https://rocketboards.org/foswiki/Documentation/EmbeddedLinuxBeginnerSGuide)制作了一个image, 然后按照 https://www.cnblogs.com/DoreenLiu/p/17903782.html 将相 ......

用ubuntu18.04.6 在编译uboot的时候提示

参考 https://www.rocketboards.org/foswiki/Documentation/EmbeddedLinuxBeginnerSGuide 制作image 的时候, 我将uboot 换成最新版本: git checkout rel_socfpga_v2023.04_23.11 ......
时候 ubuntu uboot 18 04

Kernel Memory 入门系列: RAG 简介

Kernel Memory 入门系列: RAG 简介 开一个新坑,Semantic Kernel系列会在 Release 1.0 之后陆续更新。 当我们有了一定的产品资料或者知识内容之后,自然想着提供一个更加方便的方式让用户能够快速地找到自己想要的信息,或者得到一个更加智能的答案。 以往的时候可能需 ......
简介 Kernel Memory RAG

Cyclone V SOC FPGA 如何将preloader uboot kernel rootfile rbf dtb uboot.scr 等文件打包成一个SD卡 .img文件 方便windows的windisk32 一键烧写呢?

首先 我按照 (https://rocketboards.org/foswiki/Documentation/EmbeddedLinuxBeginnerSGuide)制作了一个image, 将SD卡进行分区fat32, raw 和ext3,然后将preloader uboot kernel root ......
文件 uboot preloader rootfile Cyclone
共245篇  :1/9页 首页上一页1下一页尾页