On Thu, Jan 28, 2021 at 06:31:46PM +0800, Liu Yinsi wrote:
Signed-off-by: Liu Yinsi liuyinsi@163.com
container/initrd-cifs/start | 4 ++-- container/os-cifs/start | 4 ++-- container/os-nfs/start | 4 ++-- container/result-cifs/start | 4 ++-- providers/my-qemu.sh | 4 +--- providers/qemu/kvm.sh | 3 +-- providers/qemu/pxe.sh | 4 +--- sparrow/4-docker/buildall | 8 ++++---- 8 files changed, 15 insertions(+), 20 deletions(-)
diff --git a/container/initrd-cifs/start b/container/initrd-cifs/start index 119d1b1..6a91b37 100755 --- a/container/initrd-cifs/start +++ b/container/initrd-cifs/start @@ -3,10 +3,10 @@ # Copyright (c) 2020 Huawei Technologies Co., Ltd. All rights reserved.
. $CCI_SRC/container/defconfig.sh -. $LKP_SRC/lib/log.sh +. $CCI_SRC/lib/log.sh
lsmod | grep -q "^cifs\s" || {
- log_error "[ERROR] kernel module cifs is missing (try: sudo modprobe cifs)"
- log_error "kernel module cifs is missing (try: sudo modprobe cifs)"
You delete '[ERROR]', why delete it? Do you want to say "it's a warning"? Then you change change '[ERROR]' to '[WARNING]'.
Thanks, Yuanchao