From patchwork Sun Aug 7 12:06:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5848 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4M0yjG3SSDz40W2 for ; Sun, 7 Aug 2022 12:06:10 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4M0yjF2rljz1DP; Sun, 7 Aug 2022 12:06:09 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4M0yjF1vRhz2xy2; Sun, 7 Aug 2022 12:06:09 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384 client-signature ECDSA (P-384) client-digest SHA384) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4M0yjD31n3z2xy2 for ; Sun, 7 Aug 2022 12:06:08 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4M0yjC3Z25z8X; Sun, 7 Aug 2022 12:06:07 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1659873967; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=1nvmvxsSOrqT7AzIlwVnHVJbqyMXkoUptq1AaHs7+LI=; b=ImEatz3A4yOR974xr/Dj/Z0Is8ls/H7DDECxwyGvHiSQ43+k2VkDTNj0WtnCukUey8N56k /5dX3944SGmqzDCA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1659873967; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=1nvmvxsSOrqT7AzIlwVnHVJbqyMXkoUptq1AaHs7+LI=; b=A6yw+TDvc5+Pfe+acf272AGYBzory74Gt3U0Rui45lWB+6nF88I3fgSdFwz5ro6q1SO+vG 1D3aJZ+VD+A7WmcbnWQt8c16ok0JmLyRfCXHjN776ZgatHjvTV4wLKWMzpyzkchne6t99k 67g3lbhOXgUc9x+iKNzCA0qkVjXb5V7UL+HnWyNg4eELlpWqhoZE77di897ia/Qa2lMj6q KVq8kVGWUgao4kJzHMfShivzhUytM/vQR9V7HtSP+hse45qbF3jT8YXsWOhkNc6BSC5gYJ ZPs0bn5ippsVIRVRu6y6foO8lXJlyEIxhuheQlS17ndpQgGLekIsiHbrouEoCA== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] flash-images: Increase size of the /boot partition Date: Sun, 7 Aug 2022 12:06:04 +0000 Message-Id: <20220807120604.850678-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Same as change to the installer. Signed-off-by: Michael Tremer Reviewed-by: Peter Müller --- lfs/flash-images | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/flash-images b/lfs/flash-images index 8a033c310..b4fde8dd9 100644 --- a/lfs/flash-images +++ b/lfs/flash-images @@ -77,9 +77,9 @@ else PART_TYPE = L endif -# /boot: 128MB - OFFSET +# /boot: 256 MB - OFFSET # / : 1800 MB -S_BOOT := $(shell echo $$(( 262144 - $(S_OFFSET) ))) +S_BOOT := $(shell echo $$(( 524288 - $(S_OFFSET) ))) S_ROOT := 3773292 ifeq "$(EFI)" "1"