From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D89F9138330 for ; Wed, 10 Jan 2018 20:40:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3AF01E0ACE; Wed, 10 Jan 2018 20:40:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1AEEAE0ACE for ; Wed, 10 Jan 2018 20:40:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5248335C38 for ; Wed, 10 Jan 2018 20:40:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11096133 for ; Wed, 10 Jan 2018 20:40:31 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1515616824.e11c2d0de7b0aec7157a3fd4d5344eb79304bd86.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Netboot.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: e11c2d0de7b0aec7157a3fd4d5344eb79304bd86 X-VCS-Branch: master Date: Wed, 10 Jan 2018 20:40:31 +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: 34d6aee7-fc7d-435f-b6de-3246822987c1 X-Archives-Hash: afa4a11c6dab4e3f6693979e184f439d commit: e11c2d0de7b0aec7157a3fd4d5344eb79304bd86 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jan 10 20:40:24 2018 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jan 10 20:40:24 2018 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=e11c2d0d grs/Netboot.py: use busybox built by genkernel grs/Netboot.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/grs/Netboot.py b/grs/Netboot.py index 1b3ea80..985bcfd 100644 --- a/grs/Netboot.py +++ b/grs/Netboot.py @@ -74,6 +74,13 @@ class Netboot(HashIt): Execute(cmd, timeout=600, logfile=self.logfile, shell=True) os.chdir(cwd) + ''' The issue here was that busybox was build in the host env like the + kernel and that means that we are using the host's ARCH and the cpuflags + which are now poluting the initramfs. The better approach to building + a kernel and initramfs is to drop the Kernel.py module altogether and + emerge genkernel in the fledgeling system via the script directive, set + genkernel.conf via the populate directive and then just run genkernel. + # 2.5 Don't trust genkernel's busybox, but copy in our own version # built in the system chroot. This ensures it will work on the # target system. @@ -81,6 +88,7 @@ class Netboot(HashIt): busybox_src = os.path.join(self.portage_configroot, 'bin/busybox') busybox_dst = os.path.join(self.kernelroot, 'initramfs/bin/busybox') shutil.copy(busybox_src, busybox_dst) + ''' # 3. Make the squashfs image in the tmpdir directory. squashfs_dir = os.path.join(initramfs_root, 'mnt/cdrom')