免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 956 | 回复: 2
打印 上一主题 下一主题

[学习分享] lld书,编译hello.c,make失败。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2016-01-25 00:07 |只看该作者 |倒序浏览
[root@localhost me]# ls
hello.c  makefile
[root@localhost me]# cat makefile
obj-m := hello.o
[root@localhost me]# cat hello.c
#include <linux/init.h>
#include <linux/module.h>

MODULE_LICENSE("Dual BSD/GPL")

static int hello_init(void)
{
    printk(KERN_ALERT "Hello, World!\r\n");
    return 0;
}

static void hello_exit(void)
{
    printk(KERN_ALERT "GoodBye, cruel world!\r\n");
}

module_init(hello_init);
module_exit(hello_exit);
[root@localhost me]# make
make: *** 无目标。 停止。
[root@localhost me]#

论坛徽章:
0
2 [报告]
发表于 2016-01-25 00:09 |只看该作者
内核已经安装成功
[root@localhost me]# cat /boot/grub/grub.conf
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE:  You have a /boot partition.  This means that
#          all kernel and initrd paths are relative to /boot/, eg.
#          root (hd0,0)
#          kernel /vmlinuz-version ro root=/dev/sda3
#          initrd /initrd-[generic-]version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.32.69)
        root (hd0,0)
        kernel /vmlinuz-2.6.32.69 ro root=UUID=47c36b63-d8d4-420a-b89c-992c0ceee608 intel_iommu=on rd_NO_LUKS  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD LANG=zh_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
        initrd /initramfs-2.6.32.69.img
title Red Hat Enterprise Linux (2.6.32-358.el6.x86_64)
        root (hd0,0)
        kernel /tboot.gz logging=vga,serial,memory
        module /vmlinuz-2.6.32-358.el6.x86_64 ro root=UUID=47c36b63-d8d4-420a-b89c-992c0ceee608 intel_iommu=on rd_NO_LUKS  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_MD LANG=zh_CN.UTF-8 rd_NO_LVM rd_NO_DM rhgb quiet
        module /initramfs-2.6.32-358.el6.x86_64.img
[root@localhost me]# uname -a
Linux localhost.localdomain 2.6.32.69 #1 SMP Mon Jan 25 07:19:57 CST 2016 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost me]#

论坛徽章:
0
3 [报告]
发表于 2016-01-25 00:10 |只看该作者
请问一下,这个为什么不好使呢,我哪里写错了么~~
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP