From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6477538949418975232 X-Received: by 10.28.8.71 with SMTP id 68mr303090wmi.24.1508442001269; Thu, 19 Oct 2017 12:40:01 -0700 (PDT) X-BeenThere: isar-users@googlegroups.com Received: by 10.28.159.4 with SMTP id i4ls19426wme.3.gmail; Thu, 19 Oct 2017 12:40:01 -0700 (PDT) X-Google-Smtp-Source: ABhQp+StukqkdQydlQ44DhAjRNqibBORVvBDMKl3lJjiFKrTjJJrAmsOeqs0/riTBReA9CQzsX99 X-Received: by 10.28.63.86 with SMTP id m83mr340719wma.21.1508442001039; Thu, 19 Oct 2017 12:40:01 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1508442001; cv=none; d=google.com; s=arc-20160816; b=klpITBxqEYCCmkB5zdFjUkXvyGAPdTp5naG5PJikpjqgWgzG7WoQJzkMCejJJ52qM5 MhoKaOcYmZUWYedsfyrhdMIWXtddkrojXJA6ZKYNtxohwthYFr0ooQtUWORXDntdku8D Z2CNDE/Lpw1H1GeyhrcSyy3ZUexogUYCOjF9Ajt1QIaCzdvlkwqh3UVTtTCRRS/oOTi3 fuO9b7Z5Le8J2SV2g5ZPCYTr3WN1RWr0vwTUSoPnIJXCq7b8k7uhIoxleNFAsSmlWa8Z lRc2IfkMH6+ZoD7im8rPW5KJRwCOLcQQUzYs9CUuK/XahlRr+T5UOPOrzanClVIXEX4A LP5Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-transfer-encoding:content-language:in-reply-to:mime-version :user-agent:date:message-id:from:references:to:subject :arc-authentication-results; bh=npXMfA2uBNAb5GYd/WkiX8YpDB0wULi/K3oeLuMNiOc=; b=d98u8MlmIo/sQijLmzg0P1/UxpcR2ChoYDwprAyw4Hp5QObGEeoLmHP9kFM/Ss8eAL 4i30+fVi3aW4b/0+ItYiNBxNDiwHKFEXcTJXRN5ztqRNSgPEh8m/qhvYiK0iRKF2wgyd qa6exf5BtYn2ZN4cd2Ie3JDml377tAj2uTF0qkhTDUvIzaLIdbH5S5qXQds3Jnh3mnbN NJXdGGaYH1ULEyL31KoBc1e801NrTEUOAxh3rWTFYO3LnDgk/8fAoqkTTGsBm+lnmnqT wxp3GvRw3gYpR5Vv6tOFd7lXKt4cDQI+ImQWwUAA3VB3HSZrEQ8r5PbpJAX9sjKS0tfy nhTg== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Return-Path: Received: from aqmola.ilbers.de (aqmola.ilbers.de. [85.214.62.211]) by gmr-mx.google.com with ESMTPS id n82si116740wma.2.2017.10.19.12.40.00 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 19 Oct 2017 12:40:00 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) client-ip=85.214.62.211; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: best guess record for domain of asmirnov@ilbers.de designates 85.214.62.211 as permitted sender) smtp.mailfrom=asmirnov@ilbers.de Received: from [10.0.2.15] ([188.227.110.165]) (authenticated bits=0) by aqmola.ilbers.de (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id v9JJdwTV028299 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Thu, 19 Oct 2017 21:40:00 +0200 Subject: Re: [PATCH v4] meta-isar: Rework boot files copying To: isar-users@googlegroups.com References: <20171019180051.04ac5a52@md1em3qc> <20171019191357.11594-1-asmirnov@ilbers.de> From: Alexander Smirnov Message-ID: Date: Thu, 19 Oct 2017 22:39:53 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20171019191357.11594-1-asmirnov@ilbers.de> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-TUID: 3ehE/FLF4zjk > 8<-- > Changes since v3: > - Restored KERNEL_IMAGE and INITRD_IMAGE variables to support wic > images creation. > 8<-- > > Currently there are two variables that contains hardcoded filenames > with versions for kernel and initrd images. Isar uses them to copy these > files to deploy directory. Moreover this is performed in ext4 class, > what is logically wrong. > > This patch implements a new way which doesn't rely on hardcoded versioned > filenames. Also it drops this copying from ext4 class. > > Signed-off-by: Frank Lenormand > Signed-off-by: Alexander Smirnov > Applied to next to start CI build. Will rework it if some issue will be found.