试试第一个hello world模块添加:
1,在添加drivers/char/hello.c
/*********************************************************************************
* Copyright: (C) 2014 zhouguangfeng
* All rights reserved.
*
* Filename: hello.c
* Description: This file
*
* Version: 1.0.0(08/09/2014)
* Author: zhouguangfeng
* ChangeLog: 1, Release initial version on '08/09/2014 06:23:18 PM'
*
********************************************************************************/
#include
#include
#include
MODULE_LICENSE ('Dual BSD/GPL');
static int __init hello_init (void)
{
printk (KERN_INFO 'Hello worldn');
return 0;
}
static void __exit hello_exit (void)
{
printk (KERN_INFO 'Goodbye worldn');
return;
}
module_init (hello_init);
module_exit (hello_exit);
其中 printk是内核特有的打印函数,类似与printf,只是它不依赖库文件,KERN_INFO为
打印优先级
2,修改drivers/char/Kconfig文件,添加在make menuconfig的选项
#
# Character device configuration
#
menu 'Character devices'
source 'drivers/tty/Kconfig'
# add by zhouguangfeng 2014.8.9 for 'Hello world'
config FL_HELLO
tristate 'CCTE2440 Hello Driver'
depends on ARCH_S3C2440
help
FL2440 Hello Module.
3,修改drivers/char/Makefile,编译添加的hello.c
obj-$(CONFIG_FL_HELLO) += hello.o
4,make menuconfig选项
[*] Enable loadable module support --->
[*] Module unloading //需要支持,否则已经加载的模块无法卸载载
Device Drivers --->
Character devices --->
5,make之后,下载内核与文件系统,挂在hello.ko模块
Copyright (C) 2014 zhouguangfeng
dm9000 dm9000 eth0: link up, 100Mbps, full-duplex, lpa 0xCDE1
zhouxiaoxing login: root
>: ls
apps data etc info lib mnt root sys usr
bin dev hello init linuxrc proc sbin tmp var
>: ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1): 56 data bytes
64 bytes from 192.168.1.1: seq=0 ttl=64 time=2.592 ms
64 bytes from 192.168.1.1: seq=1 ttl=64 time=0.685 ms
64 bytes from 192.168.1.1: seq=2 ttl=64 time=0.658 ms
--- 192.168.1.1 ping statistics ---
9 packets transmitted, 9 packets received, 0% packet loss
round-trip min/avg/max = 0.658/0.896/2.592 ms
>: tftp -gr hello.ko 192.168.1.3
hello.ko 100% |*******************************| 2365 0:00:00 ETA
>: ls
apps dev hello.ko lib proc sys var
bin etc info linuxrc root tmp
data hello init mnt sbin usr
>: insmod hello.ko
Hello world
>: rmmod hello
Goodbye world
上一篇:内核移植和文件系统制作(2):linux内核最小系统和initramfs文件系统
下一篇:内核移植和文件系统制作(3)Ramdisk简介和常见问题
推荐阅读最新更新时间:2024-11-03 14:08
设计资源 培训 开发板 精华推荐
- 用于照明的 PSoC 嵌入式系统
- 使用 STMicroelectronics 的 L99MOD54XPTR 的参考设计
- 用于开/关控制应用的 AM2G-1212DH30Z ±12V 2 瓦 DC-DC 转换器的典型应用
- STM32F411RET6(2)
- LT1117CM-3.3 低压差正稳压器的典型应用,具有用于 SCSI-2 总线的有源端接器
- LT8331IMSE 36V 至 72V 输入、48V SEPIC 转换器的典型应用电路
- 使用 ROHM Semiconductor 的 BU4332 的参考设计
- LTM8052AEY 用于为超级电容器充电和主动平衡的典型应用
- 基于ATMEGA328P的触摸台灯设计
- 使用 Analog Devices 的 LTC2411-1CMS 的参考设计