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=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:subject:to:message-id:date:user-agent:mime-version :content-language:content-transfer-encoding; bh=x3bk4s923J7PyGkBLtOJgKM39SsNUgTS5KbPvps8Kak=; b=ViPX6AablCFEo/F5wy30555/hvJd6hxAhdqTP8EfB9RzyM9RxqCeHRZCtfrNEE2sUb pONUesZBjVQ0BHibtdjiNkM4gtZv3woNc4CtQJU6Q4a2FqlhRgEnMjuCbtzcGzdTuVVn HbGDA0B6v+UK4TJF4CzTRSMbuqUVMHhTB6IGlWJfueqD2h+TgpjvUNRi6z0eJQhjSsWf er02Yi5kw2Oy2zShneXo3P3+XVCIgQms+HUekhBWZz66Uc5uKoOwR1EqysCBoqXDtVBr vP79dLmoOkB4sm9o0wIwf/8R5bWENqGgOwS9ilbY8jmhPFqlD9/Ke0CQjtmdVDwyBR7Y 5FPw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:subject:to:message-id:date:user-agent :mime-version:content-language:content-transfer-encoding; bh=x3bk4s923J7PyGkBLtOJgKM39SsNUgTS5KbPvps8Kak=; b=IWvvzdCZsQxxGF1ItEz2b3IdBAwX/H15M/K5s/qVQo+rhnxyS5WRGxiecO6i5L+iUa 7y/uzif0gcn1WZMyaFSHc6M0GCr5flr+x/KsegHIKvSKvMlN3NxRTlx7rOhWzxVBo2VH 480DvG0b9Dg9G7geHHPgHtsDQj2OLI2SwxYc6UO+eKNStBkg+fgNA6OUFIYtd3WuyDTm 9uju+Majo1X4ovehdc9/KaQIovg4wV+lCg/Iesewgk5USSfxLUN44OcNWs4LGyh06HZW Qi4OKBqRj9SMIY1SUkjpXb5B2sbHl8k008lFUD+0Tr6qEUkYlkVMKxXIlrx84WDpn9+f XJ0w== X-Gm-Message-State: AOAM532g18O18HcROYllQ6ehSUbp3KDSRhMdsehHPq7jnScb3zLhmqlS r/r686/CXNe4OHFxf1F8W5bCe2dIjK0= X-Google-Smtp-Source: ABdhPJx3BmBJKK25b4BSFU9DvKyQUixhfo4P5CVrdDDiBPRd2OqTw88TNWaFTmGa4KIWF/2wwyCasw== X-Received: by 2002:a05:6512:15a7:: with SMTP id bp39mr224197lfb.521.1634145703850; Wed, 13 Oct 2021 10:21:43 -0700 (PDT) From: Leonid Krivoshein To: make-initrd@lists.altlinux.org Message-ID: Date: Wed, 13 Oct 2021 20:21:43 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.8.0 MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251; format=flowed Content-Language: ru Content-Transfer-Encoding: 7bit Subject: [make-initrd] [PATCH v4 3/4] 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: , X-List-Received-Date: Wed, 13 Oct 2021 17:21:47 -0000 Archived-At: List-Archive: From: Leonid Krivoshein 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 e4b87d6..3d4871f 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/bootchained` - 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