diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2011-05-02 19:09:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-10 09:57:08 +0100 |
commit | bcd7f1037305f2ce37c09769f2de3ddff4ca2f30 (patch) | |
tree | b576bf014833e751954af3f675eee69632f2dec0 | |
parent | c533f60dfacb4cebce9fa9ec184b683167c2ef62 (diff) | |
download | poky-bcd7f1037305f2ce37c09769f2de3ddff4ca2f30.tar.gz |
busybox: add support to mdev
This changes the packaging only if the configuration used has mdev
support enabled.
(From OE-Core rev: 82b163043aa53488a03bb3de3a78e5b6eeb76019)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/busybox/busybox.inc | 14 | ||||
-rw-r--r-- | meta/recipes-core/busybox/busybox_1.18.4.bb | 2 | ||||
-rwxr-xr-x | meta/recipes-core/busybox/files/mdev | 7 | ||||
-rw-r--r-- | meta/recipes-core/busybox/files/mdev.conf | 35 |
4 files changed, 56 insertions, 2 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc index be13c8aee4..341c5c4146 100644 --- a/meta/recipes-core/busybox/busybox.inc +++ b/meta/recipes-core/busybox/busybox.inc | |||
@@ -12,20 +12,24 @@ SECTION = "base" | |||
12 | PRIORITY = "required" | 12 | PRIORITY = "required" |
13 | 13 | ||
14 | export EXTRA_CFLAGS = "${CFLAGS}" | 14 | export EXTRA_CFLAGS = "${CFLAGS}" |
15 | PACKAGES =+ "${PN}-httpd ${PN}-udhcpd ${PN}-udhcpc ${PN}-syslog" | 15 | PACKAGES =+ "${PN}-httpd ${PN}-udhcpd ${PN}-udhcpc ${PN}-syslog ${PN}-mdev" |
16 | 16 | ||
17 | FILES_${PN}-httpd = "${sysconfdir}/init.d/busybox-httpd /srv/www" | 17 | FILES_${PN}-httpd = "${sysconfdir}/init.d/busybox-httpd /srv/www" |
18 | FILES_${PN}-syslog = "${sysconfdir}/init.d/syslog* ${sysconfdir}/syslog.conf*" | 18 | FILES_${PN}-syslog = "${sysconfdir}/init.d/syslog* ${sysconfdir}/syslog.conf*" |
19 | FILES_${PN}-mdev = "${sysconfdir}/init.d/mdev ${sysconfdir}/mdev.conf" | ||
19 | FILES_${PN}-udhcpd = "${sysconfdir}/init.d/busybox-udhcpd" | 20 | FILES_${PN}-udhcpd = "${sysconfdir}/init.d/busybox-udhcpd" |
20 | FILES_${PN}-udhcpc = "${sysconfdir}/udhcpc.d ${datadir}/udhcpc ${sysconfdir}/init.d/busybox-udhcpc" | 21 | FILES_${PN}-udhcpc = "${sysconfdir}/udhcpc.d ${datadir}/udhcpc ${sysconfdir}/init.d/busybox-udhcpc" |
21 | 22 | ||
22 | INITSCRIPT_PACKAGES = "${PN}-httpd ${PN}-syslog ${PN}-udhcpd ${PN}-udhcpc" | 23 | INITSCRIPT_PACKAGES = "${PN}-httpd ${PN}-syslog ${PN}-udhcpd ${PN}-udhcpc ${PN}-mdev" |
23 | 24 | ||
24 | INITSCRIPT_NAME_${PN}-httpd = "busybox-httpd" | 25 | INITSCRIPT_NAME_${PN}-httpd = "busybox-httpd" |
25 | INITSCRIPT_NAME_${PN}-syslog = "syslog" | 26 | INITSCRIPT_NAME_${PN}-syslog = "syslog" |
27 | INITSCRIPT_NAME_${PN}-mdev = "mdev" | ||
28 | INITSCRIPT_PARAMS_${PN}-mdev = "start 06 S ." | ||
26 | INITSCRIPT_NAME_${PN}-udhcpd = "busybox-udhcpd" | 29 | INITSCRIPT_NAME_${PN}-udhcpd = "busybox-udhcpd" |
27 | INITSCRIPT_NAME_${PN}-udhcpc = "busybox-udhcpc" | 30 | INITSCRIPT_NAME_${PN}-udhcpc = "busybox-udhcpc" |
28 | CONFFILES_${PN}-syslog = "${sysconfdir}/syslog.conf.${PN}" | 31 | CONFFILES_${PN}-syslog = "${sysconfdir}/syslog.conf.${PN}" |
32 | CONFFILES_${PN}-mdev = "${sysconfdir}/mdev.conf" | ||
29 | 33 | ||
30 | RRECOMMENDS_${PN} = "${PN}-syslog ${PN}-udhcpc" | 34 | RRECOMMENDS_${PN} = "${PN}-syslog ${PN}-udhcpc" |
31 | 35 | ||
@@ -100,6 +104,12 @@ do_install () { | |||
100 | install -m 0755 ${WORKDIR}/default.script ${D}${datadir}/udhcpc/default.script | 104 | install -m 0755 ${WORKDIR}/default.script ${D}${datadir}/udhcpc/default.script |
101 | install -m 0755 ${WORKDIR}/busybox-udhcpc ${D}${sysconfdir}/init.d/ | 105 | install -m 0755 ${WORKDIR}/busybox-udhcpc ${D}${sysconfdir}/init.d/ |
102 | fi | 106 | fi |
107 | if grep "CONFIG_MDEV=y" ${WORKDIR}/defconfig; then | ||
108 | install -m 0755 ${WORKDIR}/mdev ${D}${sysconfdir}/init.d/mdev | ||
109 | if grep "CONFIG_FEATURE_MDEV_CONF=y" ${WORKDIR}/defconfig; then | ||
110 | install -m 644 ${WORKDIR}/mdev.conf ${D}${sysconfdir}/mdev.conf | ||
111 | fi | ||
112 | fi | ||
103 | 113 | ||
104 | install -m 0644 ${S}/busybox.links ${D}${sysconfdir} | 114 | install -m 0644 ${S}/busybox.links ${D}${sysconfdir} |
105 | 115 | ||
diff --git a/meta/recipes-core/busybox/busybox_1.18.4.bb b/meta/recipes-core/busybox/busybox_1.18.4.bb index 5f5c2ae1ca..cf3765075c 100644 --- a/meta/recipes-core/busybox/busybox_1.18.4.bb +++ b/meta/recipes-core/busybox/busybox_1.18.4.bb | |||
@@ -20,6 +20,8 @@ SRC_URI = "http://www.busybox.net/downloads/busybox-${PV}.tar.bz2;name=tarball \ | |||
20 | file://mount.busybox \ | 20 | file://mount.busybox \ |
21 | file://syslog \ | 21 | file://syslog \ |
22 | file://syslog.conf \ | 22 | file://syslog.conf \ |
23 | file://mdev \ | ||
24 | file://mdev.conf \ | ||
23 | file://umount.busybox \ | 25 | file://umount.busybox \ |
24 | file://defconfig" | 26 | file://defconfig" |
25 | 27 | ||
diff --git a/meta/recipes-core/busybox/files/mdev b/meta/recipes-core/busybox/files/mdev new file mode 100755 index 0000000000..4eba6190c7 --- /dev/null +++ b/meta/recipes-core/busybox/files/mdev | |||
@@ -0,0 +1,7 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | mount -t tmpfs tmpfs /dev -o size=64k,mode=0755 | ||
4 | mkdir /dev/pts /dev/shm | ||
5 | mount -t devpts devpts /dev/pts | ||
6 | echo "/sbin/mdev" > /proc/sys/kernel/hotplug | ||
7 | mdev -s | ||
diff --git a/meta/recipes-core/busybox/files/mdev.conf b/meta/recipes-core/busybox/files/mdev.conf new file mode 100644 index 0000000000..0e1d6bc5e0 --- /dev/null +++ b/meta/recipes-core/busybox/files/mdev.conf | |||
@@ -0,0 +1,35 @@ | |||
1 | console 0:0 0600 | ||
2 | cpu_dma_latency 0:0 0660 | ||
3 | fb0:0 44 0660 | ||
4 | full 0:0 0666 | ||
5 | initctl 0:0 0600 | ||
6 | ircomm[0-9].* 0:20 0660 | ||
7 | kmem 0:15 0640 | ||
8 | kmsg 0:0 0660 | ||
9 | log 0:0 0666 | ||
10 | loop[0-9].* 0:6 0640 | ||
11 | mem 0:15 0640 | ||
12 | network_latency 0:0 0660 | ||
13 | network_throughput 0:0 0660 | ||
14 | null 0:0 0666 | ||
15 | port 0:15 0640 | ||
16 | ptmx 0:5 0666 | ||
17 | ram[0-9].* 0:6 0640 | ||
18 | random 0:0 0666 | ||
19 | sda 0:6 0640 | ||
20 | tty 0:5 0666 | ||
21 | tty.* 0:0 0620 | ||
22 | urandom 0:0 0666 | ||
23 | usbdev.* 0:0 0660 */etc/mdev/usb.sh | ||
24 | vcs.* 0:5 0660 | ||
25 | zero 0:0 0666 | ||
26 | |||
27 | pcm.* 0:0 0660 =snd/ | ||
28 | control.* 0:0 0660 =snd/ | ||
29 | timer 0:0 0660 =snd/ | ||
30 | |||
31 | event.* 0:0 0660 =input/ @/etc/mdev/find-touchscreen.sh | ||
32 | mice 0:0 0660 =input/ | ||
33 | mouse.* 0:0 0660 =input/ | ||
34 | |||
35 | tun[0-9]* 0:0 0660 =net/ | ||