From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.2.4 Message-ID: <489859B8.4080706@altlinux.com> Date: Tue, 05 Aug 2008 17:46:32 +0400 From: Anton Farygin User-Agent: Thunderbird 2.0.0.14 (X11/20080719) MIME-Version: 1.0 To: Alexey Gladkov References: <48975EEC.2050601@altlinux.com> <20080804224017.GB23913@lks.home> <20080804225058.GC20176@solemn.turbinal> <200808050331.23507.ledest@gmail.com> <48981713.1020400@altlinux.com> <9713cfcc0808050600g128301d9uab95e2dd42ced267@mail.gmail.com> <48985279.4010407@altlinux.com> <20080805132836.GZ17704@osdn.org.ua> <489856A4.2010605@altlinux.com> <489857D1.5040901@altlinux.ru> In-Reply-To: <489857D1.5040901@altlinux.ru> Content-Type: multipart/mixed; boundary="------------030700000704000901070609" Cc: ALT Linux Team development discussions Subject: Re: [devel] =?koi8-r?b?STogz9DDyckgc3F1YXNoZnMg1yBta2ltYWdl?= X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.10b3 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: Tue, 05 Aug 2008 13:46:54 -0000 Archived-At: List-Archive: List-Post: This is a multi-part message in MIME format. --------------030700000704000901070609 Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: quoted-printable Alexey Gladkov =D0=C9=DB=C5=D4: > Anton Farygin wrote: >> =E5=D3=CC=C9 =D5=C2=D2=C1=D4=D8 =D0=D2=CF=D7=C5=D2=CB=D5 =CE=C1 =D4=C9= =D0 =D0=C1=D2=C1=CD=C5=D4=D2=C1, =D4=CF =C2=D5=C4=C5=D4 =D2=C1=C2=CF=D4=C1= =D4=D8 =C2=C5=DA =D0=D2=CF=C2=CC=C5=CD. >=20 > =F4=C9=D0 =D0=D2=CF=D7=C5=D2=D1=C5=D4=D3=D1 =D4=CF=CC=D8=CB=CF =C4=CC=D1= PACK_SQUASHFS_PROCESSORS. >=20 >> =FE=D4=CF-=D4=CF =D4=C9=D0=C1 =DC=D4=CF=C7=CF: >> >> squashfs_opts=3D"${PACK_SQUASHFS_OPTS:-}" >> >> mksquashfs "\$imgdir/" '/.our/$outname' $squashfs_opts=20 >> ${nproc:+-processors $nproc} -e .in .host .fakedata >> >> =FE=D4=CF =D3=CB=C1=D6=C5=D4 =C1=D7=D4=CF=D2 ? >> >=20 > =F7=D9=C7=CC=D1=C4=C9=D4 =CE=CF=D2=CD=C1=CC=D8=CE=CF. =E4=CF=C2=C1=D7=CC= =C0 =C2=C5=DA =D0=D2=CF=C2=CC=C5=CD. =D3=D0=C1=D3=C9=C2=CF. #16560 =D1 =D5=D6=C5 =D0=CF=D7=C5=D3=C9=CC. =F0=C1=D4=DE =D7 =C1=D4=D4=C1=DE=C5. --------------030700000704000901070609 Content-Type: text/plain; name="squashfs.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="squashfs.patch" diff --git a/tools/mki-pack-squash b/tools/mki-pack-squash index 28e6ffd..1d959da 100755 --- a/tools/mki-pack-squash +++ b/tools/mki-pack-squash @@ -5,6 +5,8 @@ nproc="${PACK_SQUASHFS_PROCESSORS:-}" nproc="$(opt_check_number 'PACK_SQUASHFS_PROCESSORS' "$nproc")" +squashfs_opts="${PACK_SQUASHFS_OPTS:-}" + outname="${MKI_OUTNAME:-outname}" outname="${outname##*/}" @@ -26,7 +28,7 @@ imgdir=/.image [ ! -e '/.our/$outname' ] || rm -f -- '/.our/$outname' -mksquashfs "\$imgdir/" '/.our/$outname' ${nproc:+-processors $nproc} -e .in .host .fakedata +mksquashfs "\$imgdir/" '/.our/$outname' $squashfs_opts ${nproc:+-processors $nproc} -e .in .host .fakedata EOF mki_exec_once "$chroot/tmp/packimage.sh" --------------030700000704000901070609--