Linux设备驱动模型4——基于平台总线的LED驱动实践

以下内容源于朱有鹏嵌入式课程的学习与整理,如有侵权请告知删除。

参考博客

platform总线驱动代码分析 

平台设备与平台驱动的注册_天糊土的博客-CSDN博客

一、有driver无device

本节把之前的LED驱动源码改写成平台总线制式,先实现platform_driver。

1、代码示例

#include <linux/module.h>		// module_init  module_exit
#include <linux/init.h>			// __init   __exit
#include <linux/fs.h>
#include <linux/leds.h>
#include <mach/regs-gpio.h>
#include <mach/gpio-bank.h>
#include <linux/io.h>
#include <linux/ioport.h>
#include <mach/gpio.h>
#include <linux/platform_device.h>
#include <mach/leds-gpio.h>
#include <linux/slab.h>#define X210_LED_OFF	1			// X210中LED是正极接电源,负极节GPIO
#define X210_LED_ON		0			// 所以1是灭,0是亮struct s5pv210_gpio_led {struct led_classdev		 cdev;struct s5pv210_led_platdata	*pdata;
};static inline struct s5pv210_gpio_led *pdev_to_gpio(struct platform_device *dev)
{return platform_get_drvdata(dev);
}static inline struct s5pv210_gpio_led *to_gpio(struct led_classdev *led_cdev)
{return container_of(led_cdev, struct s5pv210_gpio_led, cdev);
}// 这个函数就是要去完成具体的硬件读写任务的
static void s5pv210_led_set(struct led_classdev *led_cdev,enum led_brightness value)
{struct s5pv210_gpio_led *p = to_gpio(led_cdev);printk(KERN_INFO "s5pv210_led_set\n");// 在这里根据用户设置的值来操作硬件// 用户设置的值就是valueif (value == LED_OFF){// 用户给了个0,希望LED灭gpio_set_value(p->pdata->gpio, X210_LED_OFF);}else{// 用户给的是非0,希望LED亮gpio_set_value(p->pdata->gpio, X210_LED_ON);}
}static int s5pv210_led_probe(struct platform_device *dev)
{// 用户insmod安装驱动模块时会调用该函数// 该函数的主要任务就是去使用led驱动框架提供的设备注册函数来注册一个设备int ret = -1;struct s5pv210_led_platdata *pdata = dev->dev.platform_data;struct s5pv210_gpio_led *led;printk(KERN_INFO "----s5pv210_led_probe---\n");led = kzalloc(sizeof(struct s5pv210_gpio_led), GFP_KERNEL);if (led == NULL) {dev_err(&dev->dev, "No memory for device\n");return -ENOMEM;}platform_set_drvdata(dev, led);// 在这里去申请驱动用到的各种资源,当前驱动中就是GPIO资源if (gpio_request(pdata->gpio, pdata->name)) {printk(KERN_ERR "gpio_request failed\n");} else {// 设置为输出模式,并且默认输出1让LED灯灭gpio_direction_output(pdata->gpio, 1);}// led1led->cdev.name = pdata->name;led->cdev.brightness = 0;	led->cdev.brightness_set = s5pv210_led_set;led->pdata = pdata;ret = led_classdev_register(&dev->dev, &led->cdev);if (ret < 0) {printk(KERN_ERR "led_classdev_register failed\n");return ret;}return 0;
}static int s5pv210_led_remove(struct platform_device *dev)
{struct s5pv210_gpio_led *p = pdev_to_gpio(dev);led_classdev_unregister(&p->cdev);gpio_free(p->pdata->gpio);kfree(p);							// kfee放在最后一步return 0;
}static struct platform_driver s5pv210_led_driver = {.probe		= s5pv210_led_probe,.remove		= s5pv210_led_remove,.driver		= {.name		= "s5pv210_led",.owner		= THIS_MODULE,},
};static int __init s5pv210_led_init(void)
{return platform_driver_register(&s5pv210_led_driver);
}static void __exit s5pv210_led_exit(void)
{platform_driver_unregister(&s5pv210_led_driver);
}module_init(s5pv210_led_init);
module_exit(s5pv210_led_exit);// MODULE_xxx这种宏作用是用来添加模块描述信息
MODULE_LICENSE("GPL");							// 描述模块的许可证
MODULE_AUTHOR("xjh <735503242@qq.com>");		// 描述模块的作者
MODULE_DESCRIPTION("s5pv210 led driver");		// 描述模块的介绍信息
MODULE_ALIAS("s5pv210_led");					// 描述模块的别名信息

2、实测现象

在虚拟机上通过Makefile进行编译之后,在开发板上测试结果如下。

[root@xjh ~]# cd /mnt
[root@xjh mnt]# ls
Makefile           driver_test.c      driver_test.mod.o
Module.symvers     driver_test.ko     driver_test.o
app.c              driver_test.mod.c  modules.order
[root@xjh mnt]# insmod driver_test.ko 
[root@xjh mnt]# cd /sys/bus/platform/drivers/
[root@xjh drivers]# pwd
/sys/bus/platform/drivers
[root@xjh drivers]# ls
alarm             ram_console       s3c-pl330         s5pv210-nand
android_pmem      reg-s5pv210-pd    s3c-sdhci         s5pv210-uart
arm-pmu           s3c-adc           s3c-ts            s5pv210_led //这里出现
dm9000            s3c-button        s3c24xx-pwm       sec-fake-battery
i2c-gpio          s3c-csis          s3c64xx-iis       smdkc110-rtc
max8698-pmic      s3c-fimc          s3cfb             soc-audio
pm-wifi           s3c-g2d           s5p-cec           switch-gpio
power             s3c-i2c           s5p-ehci          timed-gpio
pvrsrvkm          s3c-jpg           s5p-hpd
pwm-backlight     s3c-mfc           s5p-tvout
[root@xjh drivers]# cd s5pv210_led/
[root@xjh s5pv210_led]# ls
bind    module  uevent  unbind
[root@xjh s5pv210_led]# cd ..
[root@xjh drivers]# rmmod /mnt/driver_test.ko
[root@xjh drivers]# ls //卸载之后不再出现s5pv210_led
alarm             ram_console       s3c-pl330         s5pv210-nand
android_pmem      reg-s5pv210-pd    s3c-sdhci         s5pv210-uart
arm-pmu           s3c-adc           s3c-ts            sec-fake-battery
dm9000            s3c-button        s3c24xx-pwm       smdkc110-rtc
i2c-gpio          s3c-csis          s3c64xx-iis       soc-audio
max8698-pmic      s3c-fimc          s3cfb             switch-gpio
pm-wifi           s3c-g2d           s5p-cec           timed-gpio
power             s3c-i2c           s5p-ehci
pvrsrvkm          s3c-jpg           s5p-hpd
pwm-backlight     s3c-mfc           s5p-tvout
[root@xjh drivers]# 

由上可知,在/sys/bus/platform/driver下有驱动s5pv210_led,因为该程序中有如下片段。

static struct platform_driver s5pv210_led_driver = {.probe		= s5pv210_led_probe,.remove		= s5pv210_led_remove,.driver		= {.name		= "s5pv210_led", //驱动的名字.owner		= THIS_MODULE,},
};static int __init s5pv210_led_init(void)
{return platform_driver_register(&s5pv210_led_driver);
}

但驱动程序中的probe函数不会被执行,因为这里只是driver单方面的注册,没有device。

二、有device无driver

本节分析系统移植时的mach文件,添加与LED相关的platform_device,并进行设备注册。

通过在x210_kernel/arch/arm/mach-s5pv210/mach-x210.c文件中搜索platform_device数组,发现其没有LED平台设备。

static struct platform_device *smdkc110_devices[] __initdata = {
#ifdef CONFIG_FIQ_DEBUGGER&s5pv210_device_fiqdbg_uart2,
#endif
//省略部分代码,这里没有LED相关的平台设备&headset_switch_device,
};

于是参考x210_kernel/arch/arm/mach-s3c2440/mach-mini2440.c文件,在mach-x210.c中添加LED相关的platform_device定义。

步骤1:在mach-x210.c文件中合适位置处定义LED平台设备

static struct platform_device x210_led1 = {.name		= "s5pv210_led",//注意这里的设备名字要与驱动的名字一致才能匹配.id		= 1, //这个id最终影响为s5pv210_led.1的后缀.dev		= {.platform_data	= &x210_led1_pdata,}
};

步骤2:编写头文件x210_kernel/arch/arm/mach-s5pv210/include/mach/leds-gpio.h

在x210_kernel/arch/arm/mach-s5pv210/include/mach目录下,原本没有leds-gpio.h文件。我们参考x210_kernel/arch/arm/mach-s3c2410/include/mach/leds-gpio.h来编写头文件,从而对struct s5pv210_led_platdata这个结构体进行声明。代码如下。

/* arch/arm/mach-s5pv210/include/mach/leds-gpio.h** Copyright (c) 2006 Simtec Electronics*	http://armlinux.simtec.co.uk/*	Ben Dooks <ben@simtec.co.uk>** s5pv210 - LEDs GPIO connector** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License version 2 as* published by the Free Software Foundation.
*/#ifndef __ASM_ARCH_LEDSGPIO_H
#define __ASM_ARCH_LEDSGPIO_H "leds-gpio.h"#define S5PV210_LEDF_ACTLOW	(1<<0)		/* LED is on when GPIO low */
#define S5PV210_LEDF_TRISTATE	(1<<1)		/* tristate to turn off */struct s5pv210_led_platdata {unsigned int		 gpio;unsigned int		 flags;char			*name;char			*def_trigger;
};#endif /* __ASM_ARCH_LEDSGPIO_H */

步骤3:在mach-x210.c文件里实例化struct s5pv210_led_platdata这个结构体

首先,在mach-x210.c文件开头位置添加 “ #include <mach/leds-gpio.h> ”。

然后,参考mach-mini2440.c文件,实例化结构体struct s5pv210_led_platdata,代码如下。

/* LEDS */static struct s5pv210_led_platdata x210_led1_pdata = {.name		= "led1",.gpio		= S5PV210_GPJ0(3), //这个要根据数据手册得知.flags		= S5PV210_LEDF_ACTLOW | S5PV210_LEDF_TRISTATE,.def_trigger	= "heartbeat", //上面以及这个都是私有的扩展数据
};

步骤4:将LED平台设备添加到platform_device数组中

static struct platform_device *smdkc110_devices[] __initdata = {
#ifdef CONFIG_FIQ_DEBUGGER&s5pv210_device_fiqdbg_uart2,
#endif
//省略部分代码,这里没有LED相关的平台设备&headset_switch_device,&x210_led1,//added by xjh
};

步骤5:执行make以重新编译内核

由于只是修改几个文件,不需要全部重新编译,因此编译时间很短。

注意这里不需要make clean、make distclean、配置等操作,直接make即可。

步骤6:测试只有platform_device而没有platform_driver时的效果

将编译生成的内核镜像zImage(在x210_kernel/arch/arm/boot目录下)拷贝至tftp服务器共享目录下,然后启动开发板,对比前后的情形。注意LED平台设备不需要手动加载,它集成到内核中了。由实验结果可知,因为没有加载platform_driver,因此只有platform_device。

[root@xjh devices]# pwd
/sys/bus/platform/devices
[root@xjh devices]# ls
alarm             s3c-adc           s3c-sdhci.2       s5p-cec
android_pmem.1    s3c-button        s3c-sdhci.3       s5p-ehci
arm-pmu.0         s3c-csis          s3c-ts            s5p-hpd
dm9000.0          s3c-fimc.0        s3c2410-wdt       s5p-tvout
pm-wifi           s3c-fimc.1        s3c2440-i2c.0     s5pv210-nand
power.0           s3c-fimc.2        s3c2440-i2c.1     s5pv210-uart.0
pvrsrvkm          s3c-g2d           s3c2440-i2c.2     s5pv210-uart.1
pwm-backlight     s3c-jpg           s3c24xx-pwm.0     s5pv210-uart.2
reg-s5pv210-pd.0  s3c-keypad        s3c24xx-pwm.1     s5pv210-uart.3
reg-s5pv210-pd.1  s3c-mfc           s3c24xx-pwm.2     s5pv210_led.1 //这里
reg-s5pv210-pd.2  s3c-pl330.0       s3c24xx-pwm.3     sec-fake-battery
reg-s5pv210-pd.3  s3c-pl330.1       s3c64xx-iis.0     smdkc110-rtc
reg-s5pv210-pd.4  s3c-pl330.2       s3c64xx-iis.1     soc-audio.1
reg-s5pv210-pd.5  s3c-sdhci.0       s3c_lcd           switch-gpio
regulatory.0      s3c-sdhci.1       s3cfb             x210-led //这里为何出现?
[root@xjh devices]# 

题外话:设备驱动框架2——基于驱动框架写LED驱动(具体操作层)

x210-led之所以出现,是在x210_kernel/drivers/char/led/x210-led.c进行了平台设备注册。我忘记去除九鼎移植的LED驱动了。如果去除则不再出现x210-led。

static struct platform_driver x210_led_driver = {.probe		= x210_led_probe,.remove		= x210_led_remove,.suspend	= x210_led_suspend,.resume		= x210_led_resume,.driver		= {.name	= "x210-led",},
};static struct platform_device x210_led_device = {.name      = "x210-led",.id        = -1,
};static int __devinit x210_led_init(void)
{int ret;printk("x210 led driver\r\n");ret = platform_device_register(&x210_led_device);if(ret)printk("failed to register x210 led device\n");ret = platform_driver_register(&x210_led_driver);if(ret)printk("failed to register x210 led driver\n");return ret;
}static void x210_led_exit(void)
{platform_driver_unregister(&x210_led_driver);
}module_init(x210_led_init);
module_exit(x210_led_exit);MODULE_LICENSE("GPL");
MODULE_AUTHOR("jianjun jiang <jerryjianjun@gmail.com>");
MODULE_DESCRIPTION("x210 led driver");
[root@xjh devices]# cd x210-led/
[root@xjh x210-led]# ls
driver     led2       led4       power      uevent
led1       led3       modalias   subsystem
[root@xjh x210-led]# echo 1 > led1
[root@xjh x210-led]# cat led1
1
[root@xjh x210-led]# echo 0 >led1
[root@xjh x210-led]# cat led1
0
[root@xjh x210-led]#

回归正题:

屏蔽之前的所有修改,则/sys/bus/platform/devices的内容如下(不再有s5pv210_led.1)。

[root@xjh devices]# pwd
/sys/bus/platform/devices
[root@xjh devices]# ls
alarm             s3c-adc           s3c-sdhci.2       s5p-cec
android_pmem.1    s3c-button        s3c-sdhci.3       s5p-ehci
arm-pmu.0         s3c-csis          s3c-ts            s5p-hpd
dm9000.0          s3c-fimc.0        s3c2410-wdt       s5p-tvout
pm-wifi           s3c-fimc.1        s3c2440-i2c.0     s5pv210-nand
power.0           s3c-fimc.2        s3c2440-i2c.1     s5pv210-uart.0
pvrsrvkm          s3c-g2d           s3c2440-i2c.2     s5pv210-uart.1
pwm-backlight     s3c-jpg           s3c24xx-pwm.0     s5pv210-uart.2
reg-s5pv210-pd.0  s3c-keypad        s3c24xx-pwm.1     s5pv210-uart.3
reg-s5pv210-pd.1  s3c-mfc           s3c24xx-pwm.2     sec-fake-battery
reg-s5pv210-pd.2  s3c-pl330.0       s3c24xx-pwm.3     smdkc110-rtc
reg-s5pv210-pd.3  s3c-pl330.1       s3c64xx-iis.0     soc-audio.1
reg-s5pv210-pd.4  s3c-pl330.2       s3c64xx-iis.1     switch-gpio
reg-s5pv210-pd.5  s3c-sdhci.0       s3c_lcd           x210-led
regulatory.0      s3c-sdhci.1       s3cfb
[root@xjh devices]#

可以同理操作,完成其他LED平台设备的注册。

另外,也可以将设备进行模块化地安装与卸载。见参考博客。

三、金风玉露一相逢

本节测试platform_device和platform_driver相遇时的情形。

由第二节可知,设备已经集成到内核,只要加载驱动就好。platform_driver如果加载成功,将会执行platform_driver的probe函数。我们可以在probe函数中添加printk信息来验证,见第一节的代码示例中的probe函数。

static int s5pv210_led_probe(struct platform_device *dev)
{
//省略部分代码printk(KERN_INFO "----s5pv210_led_probe---\n");//省略部分代码
}

实验现象如下:

[root@xjh mnt]# insmod driver_test.ko 
[   70.047805] ----s5pv210_led_probe--- //由此可见的确执行了驱动的probe函数
[root@xjh mnt]# cd /sys/bus/platform/drivers/
[root@xjh drivers]# ls
alarm             ram_console       s3c-pl330         s5pv210-nand
android_pmem      reg-s5pv210-pd    s3c-sdhci         s5pv210-uart
arm-pmu           s3c-adc           s3c-ts            s5pv210_led //这里
dm9000            s3c-button        s3c24xx-pwm       sec-fake-battery
i2c-gpio          s3c-csis          s3c64xx-iis       smdkc110-rtc
max8698-pmic      s3c-fimc          s3cfb             soc-audio
pm-wifi           s3c-g2d           s5p-cec           switch-gpio
power             s3c-i2c           s5p-ehci          timed-gpio
pvrsrvkm          s3c-jpg           s5p-hpd
pwm-backlight     s3c-mfc           s5p-tvout
[root@xjh drivers]# cd s5pv210_led/
[root@xjh s5pv210_led]# ls
bind           module         s5pv210_led.1  uevent         unbind
// s5pv210_led.1 这个是执行probe函数产生的,有别于以前只有driver的那个
[root@xjh s5pv210_led]# cd s5pv210_led.1/
[root@xjh s5pv210_led.1]# ls
driver     leds       modalias   power      subsystem  uevent
[root@xjh s5pv210_led.1]# cd leds/
[root@xjh leds]# ls
led1
[root@xjh leds]# cd led1/
[root@xjh led1]# pwd                             //不同目录内容一样啊?
/sys/bus/platform/drivers/s5pv210_led/s5pv210_led.1/leds/led1 
[root@xjh led1]# ls
brightness      max_brightness  subsystem
device          power           uevent
[root@xjh led1]# cat brightness 
0
[root@xjh led1]# echo 1 > brightness 
[  497.303247] s5pv210_led_set
[root@xjh led1]# cd /sys/class/leds
[root@xjh leds]# ls
led1    mmc0::  mmc1::  mmc2::  mmc3::
[root@xjh leds]# cd led1/   
[root@xjh led1]# pwd
/sys/class/leds/led1  //不同目录内容一样啊?
[root@xjh led1]# ls
brightness      max_brightness  subsystem
device          power           uevent
[root@xjh led1]# 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/461191.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

StringIO类的用途

import StringIO as SIOs1 "Hello" print id(s1) s2 "Hello" s1 print id(s2) sp SIO.StringIO() sp.write("Hello") print sp.getvalue() print id(sp) sp.write("Leon") print sp.getvalue() print id(sp) exit() 主要进行字符串…

VS2010皮肤控件介绍

在我们平时使用的各种工具中&#xff0c;如QQ&#xff0c;迅雷&#xff0c;以及各种空间等&#xff0c;都提供了一些换肤功能&#xff0c;可以让我们选择各种我们喜欢的界面。本文就对VS中常用的窗口程序做一个简单的换肤&#xff0c;利用一个dll文件来进行实现。 首先我们要加…

mimemultipart java_最佳实践 – 发送javamail mime multipart电子邮件和gmail

我有一个Tomcat应用程序需要发送确认电子邮件等。我已经用Javamail(mail.jar)编写了电子邮件发送多部分文本/ HTML电子邮件。我基于Java EE示例的代码。我在本地服务器上使用SMTP MTA。它的作品很棒在Outlook中&#xff0c;我看到了HTML版本。如果我将其拖动到Outlook垃圾邮件文…

framebuffer驱动详解0——framebuffer的简介

以下内容源于朱有鹏嵌入式课程的学习与整理&#xff0c;如有侵权请告知删除。 一、framebuffer的简介 1、framebuffer的含义 framebuffer的中文意思是“帧缓冲”&#xff0c;简称fb。 2、fb是虚拟的字符设备 fb是内核虚拟的一个字符设备&#xff0c;即它是用代码构建出来的&…

Linux下Chromium使用flash的办法

环境说明:系统: CentOS 6.5 X64很简单&#xff0c;主要原因是在启动Chromium的时候指定了自有的Flash&#xff0c;我们可以在启动参数上去除指定的Flash&#xff01;sudo vim /usr/bin/chromium-browserCHROMIUM_RHEL_FLAGS"--enable-plugins --enable-extensions --ena…

ie7浏览器传输中文的问题

调用jquery的$.get()(此方法应该的对字符串进行了编码)向服务器发送中文字符串时 ie7浏览器会在后面加一个空格&#xff08;服务器接收时还应该进行解码encode("utf-8").strip()再去空格&#xff09;转载于:https://www.cnblogs.com/aveenzhou/archive/2013/04/09/30…

MySQL和Mariadb都启动不了了_linux centos7mariadb安装成功启动不了 解决思路

查看系统日志/var/log/mariadb/mariadb.log190313 14:31:03 InnoDB: Database was not shut down normally!InnoDB: Starting crash recovery.InnoDB: Reading tablespace information from the .ibd files...InnoDB: Restoring possible half-written data pages from the dou…

framebuffer驱动详解1——应用层编程实践

以下内容源于朱有鹏嵌入式课程的学习与整理&#xff0c;如有侵权请告知删除。 一、步骤总结 步骤1&#xff1a;打开设备文件 步骤2&#xff1a;获取设备信息 步骤3&#xff1a;mmap函数做映射 步骤4&#xff1a;填充framebuffer 二、步骤分析 1、打开设备文件 设备文件为/dev…

(转)API SOCKET基础(一) TCP建立连接并通信

写这篇日志&#xff0c;并不是要记录令人眼前一亮的算法&#xff0c;只是为了本人健忘的脑袋做一点准备。 要进行网络通信编程&#xff0c;就要用到socket&#xff08;套接字&#xff09;&#xff0c;下面以TCP为例展示如何利用socket通信。 要 进行socket编程&#xff0c;首先…

5shift shell

echo offcopy %systemroot%\system32\taskmgr.exe %systemroot%\system32\sethc.execopy %systemroot%\system32\taskmgr.exe %systemroot%\system32\dllcache\sethc.exepause转载于:https://www.cnblogs.com/upshania/p/3817258.html

java 线程转储_获取Java线程转储的常用方法(推荐)

1. 线程转储简介线程转储(Thread Dump)就是JVM中所有线程状态信息的一次快照。线程转储一般使用文本格式, 可以将其保存到文本文件中, 然后人工查看和分析, 或者使用工具/API自动分析。Java中的线程模型, 直接使用了操作系统的线程调度模型, 只进行简单的封装。线程调用栈, 也称…

framebuffer驱动详解2——fb驱动框架分析(核心层)

以下内容源于朱有鹏嵌入式课程的学习与整理&#xff0c;如有侵权请告知删除。 一、前言 framebuffer驱动框架包括以下两部分&#xff1a; 1、内核开发者实现的部分&#xff08;核心层&#xff09; rootubuntu:省略部分路径/x210_kernel/drivers/video# ls *.o built-in.o …

Oracle conn 协议适配器错误解决

Oracle conn 协议适配器错误 --解决方法C:\Documents and Settings\administrator>set oracle_sidmyoracleC:\Documents and Settings\administrator>sqlplus /nologSQL*Plus: Release 10.2.0.1.0 - Production on 星期三 12月 26 09:47:16 2012Copyright (c) 1982, 2005…

jquery ajax 文本丢失加号和连接号的问题

因为采用data:字符串这种形式&#xff0c;和&是jquery分隔参数的分隔符&#xff0c;所以会丢失&#xff0c;解决方法就是把text文本中的和&替换掉&#xff0c;用js里面的encodeURIComponent编码&#xff0c;为了省事&#xff0c;直接写出编码替换.. function FixJqText…

python给定一个整数n、判断n是否为素数_输入一个大于3的整数n,判断它是否为素数...

#include //让n被i除(i的值从2到n-1)int main(){int n,i;printf("please enter a integer number,n?");scanf("%d",&n);for(i2;i<n-1;i)if(n%i0) break;if(i",n);else printf("%d is a prime number.",n);return 0;}**************…

kernel移植——修改内核的启动logo

以下内容源于朱有鹏嵌入式课程的学习&#xff0c;如有侵权请告知删除。 参考博客 http://blog.csdn.net/ultraman_hs/article/details/54988168 一、自定义内核启动logo 步骤一&#xff1a;安装工具包 在命令行中输入以下内容 sudo apt-get install netpbm 步骤二&#xff1a;…

编译Ngnix遇到的问题,查看程序依赖的库文件

要点:ldd 可以读取每个可以运行的程序依赖的 so 文件。 编译的时候提示需要Openssl库. 查看本机,已经安装了openssl 查看编译报错文件,查找Openssl所依赖的库 more objs/autoconf.err 查看openssl所依赖的库文件 ldd /usr/bin/openssl ldd –u /usr/bin/openssl objdump -x ob…

[JavaWeb修行之路 Day1] 安装、配置、部署Tomcat

一、相关软件下载 Tomcat下载地址&#xff1a;http://tomcat.apache.org 。选择Tomcat 6或者Tomcat 7。Eclipse下载地址&#xff1a;http://www.eclipse.org/downloads/ 。选择Eclipse IDE for Java EE Developers进行下载。当然&#xff0c;也可以使用MyEclipse&#xff0c;收…

springboot创建parent_理解spring-boot-starter-parent

理解spring-boot-starter-parent通过spring initializr&#xff0c;我们可以快速构建一个springboot应用&#xff0c;如果你选择的是Maven来管理项目&#xff0c;在默认的pom文件中有这么一个section&#xff1a;org.springframework.bootspring-boot-starter-parent2.1.1.RELE…

应用层为何不能设置分辨率

以下内容源于朱有鹏《物联网大讲堂》课程的学习&#xff0c;如有侵权&#xff0c;请告知删除。 5、在应用程序中设置分辨率 &#xff08;1&#xff09;可视分辨率&#xff08;即实际分辨率&#xff09;、虚拟分辨率 &#xff08;2&#xff09;实验及结果 vinfo.xres 1024; …