From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 4 Oct 2018 12:39:38 +0300 From: Michael Shigorin To: devel@lists.altlinux.org Message-ID: <20181004093938.GO18842@imap.altlinux.org> References: <7582634.60362.1538640868084.JavaMail.zimbra@remotesystems.ru> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <7582634.60362.1538640868084.JavaMail.zimbra@remotesystems.ru> User-Agent: Mutt/1.5.23.88.hg577987ca2d02 (2014-03-12) Subject: Re: [devel] mkimage-profiles: /sbin/ip: No such file or directory X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Oct 2018 09:39:38 -0000 Archived-At: List-Archive: List-Post: --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit On Thu, Oct 04, 2018 at 11:14:28AM +0300, Evgeniy Korneechev wrote: > Наткнулся на ошибку (при сборке [на ветке master и p8] regular-mate.iso, -xfce.iso): > initrd-cp: error: /sbin/ip: No such file or directory Должно бы только на сизифе, это следствие make-initrd 2.2. Ср.: https://bugzilla.altlinux.org/show_bug.cgi?id=35454 Костыль прилагается, но крайне огорчителен -- потому и не могу пока выпустить новую версию mkimage-profiles. --  ---- WBR, Michael Shigorin / http://altlinux.org   ------ http://opennet.ru / http://anna-news.info --W/nzBZO5zC0uMSeA Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="0001-stage1-m-i-deps-stopgap-fix.patch" >>From ed9fb0664bb9000885e9eaca4c8166525814ed53 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Wed, 19 Sep 2018 10:16:46 +0300 Subject: [PATCH] stage1: m-i deps stopgap fix --- features.in/stage2/config.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features.in/stage2/config.mk b/features.in/stage2/config.mk index 2eb7099..f8756ba 100644 --- a/features.in/stage2/config.mk +++ b/features.in/stage2/config.mk @@ -1,7 +1,8 @@ # "1" is not a typo use/stage2: sub/stage1 @$(call add_feature) - @$(call add,STAGE1_PACKAGES,file make-initrd make-initrd-propagator propagator) + @$(call add,STAGE1_PACKAGES,make-initrd file iproute2 which cifs-utils) + @$(call add,STAGE1_PACKAGES,make-initrd-propagator propagator) @$(call add,STAGE1_MODLISTS,$$(FEATURES)) @$(call xport,STAGE1_KCONFIG) -- 2.10.4 --W/nzBZO5zC0uMSeA--