UBOOT
Mack_liu
dajiahao
展开
-
UBOOT NVME驱动(一路io队列和一路admin队列的例程分析)(未完成)
图片较大,建议保存本地查看,或者双击放大原创 2020-09-01 16:02:02 · 1077 阅读 · 0 评论 -
UBOOT中链表操作例子(仿照uboot中的例子)
struct tmp{ u8* name; u8* lenth; u8* age; struct tmp *tp;};//struct tmp *tmp;#define __aligned(x) __attribute__((aligned(x)))#define start_entry(_type, _list) \ _type _u_boot_list_1_##_list __aligned(4) \ ...原创 2020-09-01 15:24:12 · 529 阅读 · 0 评论 -
在函数‘_start’中: (.text+0x20):对‘main’未定义的引用
本人在最近研究u-boot的代码,链表操作时候写了如下代码:#include <stdio.h>typedef unsigned char u8;struct tmp{ u8* name; u8* lenth; u8* age;};struct tmp *tmp;#define __aligned(x) __attribute__((aligned(x)))#define ll_entry_declare(_type, _name, _list)原创 2020-06-28 18:35:20 · 6304 阅读 · 0 评论 -
UBOOT-在uboot中确定网络连接问题
zynq-uboot> mdiomdio - MDIO utility commandsUsage:mdio list - List MDIO busesmdio read <phydev> [<devad>.]<reg> - read PHY's register at <devad>.<reg>mdio write <phydev> [<devad>.]<reg> <.原创 2020-06-09 18:25:44 · 3548 阅读 · 3 评论