04 2022 档案

undefined reference to `__stack_chk_guard'
摘要:root@ubuntu:~/arm/armv8-bare-metal# make aarch64-linux-gnu-ld -T linker.ld linker.ld boot.o vector.o exception.o kernel.o gic_v3.o uart.o psw.o aarch6 阅读全文

posted @ 2022-04-28 15:57 tycoon3 阅读(1015) 评论(0) 推荐(0) 编辑

fork多份
摘要:No more forks can be created. These forks already exist: Jump to... Step-1: Clone the original repo to your local machine Step-2: Create a new empty r 阅读全文

posted @ 2022-04-28 11:27 tycoon3 阅读(298) 评论(0) 推荐(0) 编辑

git mv重命名
摘要: 阅读全文

posted @ 2022-04-27 12:01 tycoon3 阅读(18) 评论(0) 推荐(0) 编辑

remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
摘要: 阅读全文

posted @ 2022-04-22 14:37 tycoon3 阅读(28) 评论(0) 推荐(0) 编辑

Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
摘要:root@ubuntux86:/work/img_repo# git remote add origin https://github.com/magnate3/img_repo.git fatal: not a git repository (or any parent up to mount p 阅读全文

posted @ 2022-04-22 14:18 tycoon3 阅读(2861) 评论(0) 推荐(0) 编辑

软中断
摘要:软中断 首先明确一个概念软中断(不是软件中断int n)。总来来说软中断就是内核在启动时为每一个内核创建了一个特殊的进程,这个进程会不停的poll检查是否有软中断需要执行,如果需要执行则调用注册的接口函数。所以软中断是运行在进程上下文的,而且可能并发执行在不同CPU上。所谓的软中断就是内核利用内核线 阅读全文

posted @ 2022-04-19 09:44 tycoon3 阅读(755) 评论(0) 推荐(0) 编辑

ubuntu终端进入secure boot 修改为disable
摘要:1.首先进入终端输入:sudo apt install mokutilsudo mokutil --disable-validation 2.再重启电脑reboot3.此时电脑重启,出现蓝屏,按任意键,出现四个选项:选择change secure boot stateContinue bootCha 阅读全文

posted @ 2022-04-18 09:59 tycoon3 阅读(1405) 评论(0) 推荐(0) 编辑

无线网卡 RTL8188GU
摘要:https://github.com/wandercn/RTL8188GU ubuntu@ubuntux86:~$ cd RTL8188GU/8188gu-1.0.1 ubuntu@ubuntux86:~/RTL8188GU/8188gu-1.0.1$ make -j20 make ARCH=arm 阅读全文

posted @ 2022-04-18 09:40 tycoon3 阅读(1154) 评论(0) 推荐(0) 编辑

[drivers/pinctrl/intel/pinctrl-intel.ko] undefined!
摘要:只需删除文件夹 linux-5.4.77/drivers/pinctrl/intel并去掉 linux-5.4.77/drivers/pinctrl/Makefile 中如下的一行obj-$(CONFIG_X86) += intel/之后再次编译即可。 或者关闭config 阅读全文

posted @ 2022-04-15 20:37 tycoon3 阅读(31) 评论(0) 推荐(0) 编辑

Linux 内核源码分析之进程调度的逻辑
摘要:Linux 内核源码分析之进程调度的逻辑 阅读全文

posted @ 2022-04-15 11:37 tycoon3 阅读(31) 评论(0) 推荐(0) 编辑

mkintramfs mkinitrd initrd.img
摘要:mkinitrd /boot/initrd.img 2.6.26 mkintramfs 2.6.26 -o /boot/initrd.img 其中2.6.26为/lib/modules下的目录名称 阅读全文

posted @ 2022-04-13 18:08 tycoon3 阅读(54) 评论(0) 推荐(0) 编辑

alpine
摘要:can't run '/sbin/openrc': No such file or directory can't run '/sbin/openrc': No such file or directory can't run '/sbin/openrc': No such file or dire 阅读全文

posted @ 2022-04-11 10:29 tycoon3 阅读(48) 评论(0) 推荐(0) 编辑

Xenomai source code analysis Chapter 1 - xenomai_init
摘要:I have been using xenomai all the time. I usually read some xenomai technical documents more or less and have a general understanding of xenomai. Rece 阅读全文

posted @ 2022-04-10 18:51 tycoon3 阅读(98) 评论(0) 推荐(0) 编辑

/lib/libgcc_s.so.1: version `GCC_3.5'
摘要:root@zedboard-zynq7:~# /usr/xenomai/demo/altency /usr/xenomai/demo/altency: /lib/libgcc_s.so.1: version `GCC_3.5' not found (required by /usr/xenomai/ 阅读全文

posted @ 2022-04-10 18:35 tycoon3 阅读(815) 评论(0) 推荐(0) 编辑

EXT2-fs (ram0): error: ext2_get_inode: unable to read inode block - inode=24582, block=98339
摘要:一个ram 默认只有4096kb 配置内核时, 进入block driver-->block device --> 里面 默认ram大小是4096 修改成ramdisk大小 阅读全文

posted @ 2022-04-10 11:12 tycoon3 阅读(252) 评论(0) 推荐(0) 编辑

e1000_irq_enable pk enable_irq
摘要:函数:enable_irq( ): 函数enable_irq( )在实现过程中调用了函数__enable_irq( ),根据中断所处的深度和状态的不同,会有不同的执行结果,一般用于改变中断的状态,使中断处于唤醒状态,触发中断处理函数的执行及减少中断所处的深度,即改变字段depth的值。 static 阅读全文

posted @ 2022-04-09 11:24 tycoon3 阅读(139) 评论(0) 推荐(0) 编辑

git 文字高亮
摘要:参考 https://github.com/liyinchigithub/readme 文字高亮 文字高亮功能能使行内部分文字高亮,使用一对反引号。 语法: `linux` `网络编程` `socket` `epoll` 效果:linux 网络编程 socket epoll 也适合做一篇文章的tag 阅读全文

posted @ 2022-04-02 18:02 tycoon3 阅读(96) 评论(0) 推荐(0) 编辑

ubuntu终端进入secure boot 修改为disable
摘要:1.首先进入终端输入:sudo apt install mokutilsudo mokutil --disable-validation 2.再重启电脑reboot3.此时电脑重启,出现蓝屏,按任意键,出现四个选项:选择change secure boot stateContinue bootCha 阅读全文

posted @ 2022-04-01 16:44 tycoon3 阅读(1269) 评论(0) 推荐(0) 编辑

Non-RCU local softirq work is pending, handler #08
摘要:检查/var/log/messages可以看到: Mar 7 22:38:41 exampleserver-1 kernel: NOHZ: local_softirq_pending 100 Mar 22 08:38:31 exampleserver-1 kernel: NOHZ: local_so 阅读全文

posted @ 2022-04-01 15:40 tycoon3 阅读(1805) 评论(0) 推荐(1) 编辑

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

点击右上角即可分享
微信分享提示