Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package
@ 2014-07-31  2:32 Danomi Manchego
  2014-07-31 17:14 ` Yann E. MORIN
  2014-07-31 18:20 ` Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Danomi Manchego @ 2014-07-31  2:32 UTC (permalink / raw)
  To: buildroot

The S10udev script is not installed or referenced, and eudev has its own
S10udev.  So we can simply remove it.

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
---
 package/udev/S10udev |   48 ------------------------------------------------
 1 file changed, 48 deletions(-)
 delete mode 100755 package/udev/S10udev

diff --git a/package/udev/S10udev b/package/udev/S10udev
deleted file mode 100755
index cf825b4..0000000
--- a/package/udev/S10udev
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/sh
-#
-# udev	This is a minimal non-LSB version of a UDEV startup script.  It
-#	was derived by stripping down the udev-058 LSB version for use
-#	with buildroot on embedded hardware using Linux 2.6.34+ kernels.
-#
-#	You may need to customize this for your system's resource limits
-#	(including startup time!) and administration.  For example, if
-#	your early userspace has a custom initramfs or initrd you might
-#	need /dev much earlier; or without hotpluggable busses (like USB,
-#	PCMCIA, MMC/SD, and so on) your /dev might be static after boot.
-#
-#	This script assumes your system boots right into the eventual root
-#	filesystem, and that init runs this udev script before any programs
-#	needing more device nodes than the bare-bones set -- /dev/console,
-#	/dev/zero, /dev/null -- that's needed to boot and run this script.
-#
-
-# Check for missing binaries
-UDEV_BIN=/lib/udev/udevd
-test -x $UDEV_BIN || exit 5
-
-# Check for config file and read it
-UDEV_CONFIG=/etc/udev/udev.conf
-test -r $UDEV_CONFIG || exit 6
-. $UDEV_CONFIG
-
-case "$1" in
-    start)
-        printf "Populating ${udev_root:-/dev} using udev: "
-        printf '\000\000\000\000' > /proc/sys/kernel/hotplug
-        $UDEV_BIN -d || (echo "FAIL" && exit 1)
-        udevadm trigger
-        echo "done"
-        ;;
-    stop)
-        # Stop execution of events
-        udevadm control --stop-exec-queue
-        killall udevd
-        ;;
-    *)
-        echo "Usage: $0 {start|stop}"
-        exit 1
-        ;;
-esac
-
-
-exit 0
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package
  2014-07-31  2:32 [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package Danomi Manchego
@ 2014-07-31 17:14 ` Yann E. MORIN
  2014-07-31 18:20 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2014-07-31 17:14 UTC (permalink / raw)
  To: buildroot

Danomi, All,

On 2014-07-30 22:32 -0400, Danomi Manchego spake thusly:
> The S10udev script is not installed or referenced, and eudev has its own
> S10udev.  So we can simply remove it.
> 
> Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

Regards,
Yann E. MORIN.

> ---
>  package/udev/S10udev |   48 ------------------------------------------------
>  1 file changed, 48 deletions(-)
>  delete mode 100755 package/udev/S10udev
> 
> diff --git a/package/udev/S10udev b/package/udev/S10udev
> deleted file mode 100755
> index cf825b4..0000000
> --- a/package/udev/S10udev
> +++ /dev/null
> @@ -1,48 +0,0 @@
> -#!/bin/sh
> -#
> -# udev	This is a minimal non-LSB version of a UDEV startup script.  It
> -#	was derived by stripping down the udev-058 LSB version for use
> -#	with buildroot on embedded hardware using Linux 2.6.34+ kernels.
> -#
> -#	You may need to customize this for your system's resource limits
> -#	(including startup time!) and administration.  For example, if
> -#	your early userspace has a custom initramfs or initrd you might
> -#	need /dev much earlier; or without hotpluggable busses (like USB,
> -#	PCMCIA, MMC/SD, and so on) your /dev might be static after boot.
> -#
> -#	This script assumes your system boots right into the eventual root
> -#	filesystem, and that init runs this udev script before any programs
> -#	needing more device nodes than the bare-bones set -- /dev/console,
> -#	/dev/zero, /dev/null -- that's needed to boot and run this script.
> -#
> -
> -# Check for missing binaries
> -UDEV_BIN=/lib/udev/udevd
> -test -x $UDEV_BIN || exit 5
> -
> -# Check for config file and read it
> -UDEV_CONFIG=/etc/udev/udev.conf
> -test -r $UDEV_CONFIG || exit 6
> -. $UDEV_CONFIG
> -
> -case "$1" in
> -    start)
> -        printf "Populating ${udev_root:-/dev} using udev: "
> -        printf '\000\000\000\000' > /proc/sys/kernel/hotplug
> -        $UDEV_BIN -d || (echo "FAIL" && exit 1)
> -        udevadm trigger
> -        echo "done"
> -        ;;
> -    stop)
> -        # Stop execution of events
> -        udevadm control --stop-exec-queue
> -        killall udevd
> -        ;;
> -    *)
> -        echo "Usage: $0 {start|stop}"
> -        exit 1
> -        ;;
> -esac
> -
> -
> -exit 0
> -- 
> 1.7.9.5
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package
  2014-07-31  2:32 [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package Danomi Manchego
  2014-07-31 17:14 ` Yann E. MORIN
@ 2014-07-31 18:20 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-07-31 18:20 UTC (permalink / raw)
  To: buildroot

Dear Danomi Manchego,

On Wed, 30 Jul 2014 22:32:24 -0400, Danomi Manchego wrote:
> The S10udev script is not installed or referenced, and eudev has its own
> S10udev.  So we can simply remove it.
> 
> Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
> ---
>  package/udev/S10udev |   48 ------------------------------------------------
>  1 file changed, 48 deletions(-)
>  delete mode 100755 package/udev/S10udev

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-31 18:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-31  2:32 [Buildroot] [PATCH 1/1] udev: remove left-over S10udev script from udev virtual package Danomi Manchego
2014-07-31 17:14 ` Yann E. MORIN
2014-07-31 18:20 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox