From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BE777138A1F for ; Thu, 10 Apr 2014 00:59:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2DE97E0B18; Thu, 10 Apr 2014 00:59:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2863E0B18 for ; Thu, 10 Apr 2014 00:59:01 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B71893400FB for ; Thu, 10 Apr 2014 00:59:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 829001818D for ; Thu, 10 Apr 2014 00:58:58 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1397089756.a817915632f7f2162e7c3740d204989f6cfde554.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: / X-VCS-Repository: proj/openrc X-VCS-Files: README.busybox X-VCS-Directories: / X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: a817915632f7f2162e7c3740d204989f6cfde554 X-VCS-Branch: master Date: Thu, 10 Apr 2014 00:58:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: adf1dcbc-ea2a-42eb-ba4c-86db673c2aae X-Archives-Hash: 61aadd58f85d3bb597e280d730a6df85 commit: a817915632f7f2162e7c3740d204989f6cfde554 Author: William Hubbs gmail com> AuthorDate: Thu Apr 10 00:27:12 2014 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu Apr 10 00:29:16 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=a8179156 README.busybox: document incompatibility with built-in ip applet --- README.busybox | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/README.busybox b/README.busybox index 61b5ffd..b084d42 100644 --- a/README.busybox +++ b/README.busybox @@ -8,21 +8,24 @@ counterparts. Since it is possible to configure busybox to not include these applets or to prefer the standalone counterparts, OpenRC does not attempt to support the busybox applets. -All of these apply to busybox 1.20.2, which is the current version of -busybox as of this writing. +For now, it is recommended that you disable the following busybox +configuration settings for best results with OpenRC. -1. The start-stop-daemon applet is not compatible with start-stop-daemon -in OpenRC. Please make sure CONFIG_START_STOP_DAEMON is not set to y in -the configuration file you use to build busybox. +CONFIG_START_STOP_DAEMON -- The start-stop-daemon applet is not compatible with +start-stop-daemon in OpenRC. -2. The -O option for the mount applet does not support the [no]_netdev -options from util-linux for handling network file systems. +CONFIG_MOUNT -- The mount applet does not support the -O [no]_netdev options to +skip over or include network file systems when the -a option is present. -3. The umount applet does not support the -O option from util-linux. +CONFIG_UMOUNT -- The umount applet does not support the -O option along with -a. -4. The swapon applet does not support the -e option from util-linux. +CONFIG_SWAPONOFF -- The swapon applet does not support the -e option +or recognize the nofail option in fstab. -5. the setfont applet does not support the -u option from kbd. +CONFIG_SETFONT -- The setfont applet does not support the -u option from kbd. + +CONFIG_IP -- The ip applet doesn't support the "scope" modifier for +"ip route add" and "ip address add". There is work to get most of these supported by busybox, so this file will be updated as things change.