From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on sa.local.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-0.1 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,MISSING_DATE,MISSING_MID, NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 From: "Leonid Krivoshein" To: make-initrd@lists.altlinux.org Subject: [make-initrd] [PATCH v6 03/22] bootchain-core: move bootchain-sh-function to /bin X-BeenThere: make-initrd@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: make-initrd@lists.altlinux.org List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Sun, 24 Oct 2021 17:20:15 -0000 X-List-Received-Date: Sun, 24 Oct 2021 17:20:15 -0000 Message-ID: <20211024172015.KI4mY2pG0KN2ezhzd63xBj_hF5NzUSlkHGLbJ149BVU@z> Archived-At: List-Archive: All other include files of the make-initrd are in /bin, the include files of the bootchain are also there, and only one pipeline file apparently happened to be in /sbin. Signed-off-by: Leonid Krivoshein --- features/bootchain-core/README.md | 2 +- .../bootchain-core/data/{sbin => bin}/bootchain-sh-functions | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename features/bootchain-core/data/{sbin => bin}/bootchain-sh-functions (100%) diff --git a/features/bootchain-core/README.md b/features/bootchain-core/README.md index ce2bf98..1844f88 100644 --- a/features/bootchain-core/README.md +++ b/features/bootchain-core/README.md @@ -19,7 +19,7 @@ us to optimize fill in `initramfs` only which we are need. ## Main components of bootchain-core -- `/sbin/bootchain-sh-functions` - common API and evolution +- `/bin/bootchain-sh-functions` - common API and evolution of `pipeline-sh-functions`. - `/sbin/chaind` - daemon, evolution of `pipelined`. - `/etc/rc.d/init.d/bootchain` - sysvinit start script. diff --git a/features/bootchain-core/data/sbin/bootchain-sh-functions b/features/bootchain-core/data/bin/bootchain-sh-functions similarity index 100% rename from features/bootchain-core/data/sbin/bootchain-sh-functions rename to features/bootchain-core/data/bin/bootchain-sh-functions -- 2.24.1