From patchwork Sun Oct 10 12:57:42 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 4775 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 4HS25p6wmdz44S9 for ; Sun, 10 Oct 2021 12:57:50 +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 4HS25n4fTNz29D; Sun, 10 Oct 2021 12:57:49 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4HS25n4TCdz2xYj; Sun, 10 Oct 2021 12:57:49 +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) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4HS25m1K2vz2xYj for ; Sun, 10 Oct 2021 12:57:48 +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 4HS25l4d6fzYr; Sun, 10 Oct 2021 12:57:47 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1633870667; 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=C3XLS0zzKOn/qUuEDi3KB2WJQQopG0e9vtGhFsdc7SA=; b=t5qZkw8tXurx79p4kooRt4ThBhdTgMX3sFG0/o1fXwbCRLU2PYFndeUpWUynpZ6C5uO4Cm Zh9xfXLrrmoW/7Cg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1633870667; 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=C3XLS0zzKOn/qUuEDi3KB2WJQQopG0e9vtGhFsdc7SA=; b=PbKngOZ2+gSY9DW4J7TL6ieR6awsrSXVlRk94vFAKDvBBG68msTvSskS/I/rL65f1Rdf7k cdAGtwmgHAN02PJdqnlxZDNl/sarrMjz88aBPKD0d/xQDToTFoC6qB8W9DRPNif9Zn1yoP SoYV5NnebCzxl5TC5nckUwvlX+3PlStry8mzgFAu+luGqwnlLAZlFO/HxRnH5dLtQG4lRM 88AaO/WJsHE1/pKWAf8CGXF84hxOmT1bpJLRqFVQxtAkYX4qVxgrXGQKNB3bmnkIwWWYql iodLncbzS1CMxhq2kLHJ9q1UGNEVTAK1rmr4kWM3BqObxBrFLYhol21j7ztGeg== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] util-linux: Ship hexdump Date: Sun, 10 Oct 2021 12:57:42 +0000 Message-Id: <20211010125742.16400-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" This is a handy tool which can help debugging any problems and should be part of the distribution. Signed-off-by: Michael Tremer --- config/rootfiles/common/aarch64/util-linux | 2 +- config/rootfiles/common/armv6l/util-linux | 2 +- config/rootfiles/common/i586/util-linux | 2 +- config/rootfiles/common/x86_64/util-linux | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/rootfiles/common/aarch64/util-linux b/config/rootfiles/common/aarch64/util-linux index cb5c4ef54..9f4b9866d 100644 --- a/config/rootfiles/common/aarch64/util-linux +++ b/config/rootfiles/common/aarch64/util-linux @@ -57,7 +57,7 @@ usr/bin/eject usr/bin/fallocate usr/bin/flock usr/bin/getopt -#usr/bin/hexdump +usr/bin/hexdump usr/bin/ionice #usr/bin/ipcmk #usr/bin/ipcrm diff --git a/config/rootfiles/common/armv6l/util-linux b/config/rootfiles/common/armv6l/util-linux index 8bde3a73a..d32ed5256 100644 --- a/config/rootfiles/common/armv6l/util-linux +++ b/config/rootfiles/common/armv6l/util-linux @@ -57,7 +57,7 @@ usr/bin/eject usr/bin/fallocate usr/bin/flock usr/bin/getopt -#usr/bin/hexdump +usr/bin/hexdump usr/bin/ionice #usr/bin/ipcmk #usr/bin/ipcrm diff --git a/config/rootfiles/common/i586/util-linux b/config/rootfiles/common/i586/util-linux index bcfe1ef26..55cc7ecb7 100644 --- a/config/rootfiles/common/i586/util-linux +++ b/config/rootfiles/common/i586/util-linux @@ -57,7 +57,7 @@ usr/bin/eject usr/bin/fallocate usr/bin/flock usr/bin/getopt -#usr/bin/hexdump +usr/bin/hexdump #usr/bin/i386 usr/bin/ionice #usr/bin/ipcmk diff --git a/config/rootfiles/common/x86_64/util-linux b/config/rootfiles/common/x86_64/util-linux index 425e4a15c..0c731e66a 100644 --- a/config/rootfiles/common/x86_64/util-linux +++ b/config/rootfiles/common/x86_64/util-linux @@ -57,7 +57,7 @@ usr/bin/eject usr/bin/fallocate usr/bin/flock usr/bin/getopt -#usr/bin/hexdump +usr/bin/hexdump #usr/bin/i386 usr/bin/ionice #usr/bin/ipcmk