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 6ED78138350 for ; Tue, 31 Mar 2020 18:39:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A406FE0985; Tue, 31 Mar 2020 18:39:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 8BA50E0985 for ; Tue, 31 Mar 2020 18:39:00 +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 637AB34F390 for ; Tue, 31 Mar 2020 18:38:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 960521AF for ; Tue, 31 Mar 2020 18:38:57 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585679900.4e910d3734eaba7b8467a96a82098b8a7013dbc3.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/netboot2-final.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 4e910d3734eaba7b8467a96a82098b8a7013dbc3 X-VCS-Branch: master Date: Tue, 31 Mar 2020 18:38:57 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2d957eb-ef13-4bef-8e26-e137d0fbc6db X-Archives-Hash: 95811ba85bcfd5600096832b4c91ccf3 commit: 4e910d3734eaba7b8467a96a82098b8a7013dbc3 Author: Christos Kotsi gmail com> AuthorDate: Wed Apr 12 08:43:49 2017 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Mar 31 18:38:20 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=4e910d37 targets: Use mkdir -p Signed-off-by: Matt Turner gentoo.org> targets/support/netboot2-final.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/targets/support/netboot2-final.sh b/targets/support/netboot2-final.sh index ebd51878..e6566a1e 100755 --- a/targets/support/netboot2-final.sh +++ b/targets/support/netboot2-final.sh @@ -3,13 +3,11 @@ source ${clst_shdir}/support/functions.sh source ${clst_shdir}/support/filesystem-functions.sh - extract_kernels ${clst_target_path}/boot # Move kernel binaries to ${clst_target_path}/kernels, and # move everything else to ${clst_target_path}/kernels/misc -mkdir ${clst_target_path}/kernels -mkdir ${clst_target_path}/kernels/misc +mkdir -p ${clst_target_path}/kernels/misc for x in ${clst_boot_kernel}; do mv ${clst_target_path}/boot/${x} ${clst_target_path}/kernels