From 8938f35627873d9331c045e025fe8a409221943f Mon Sep 17 00:00:00 2001 From: sidneychang <2190206983@qq.com> Date: Wed, 22 May 2024 19:48:58 +0800 Subject: [PATCH] runtime-rs: Adjust indentation in ifneq statements within Makefile. Replace tab indentation with spaces for the three lines within the ifneq statements, aligning them with the surrounding code. Fixes:#9692 Signed-off-by: sidneychang <2190206983@qq.com> --- src/runtime-rs/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/runtime-rs/Makefile b/src/runtime-rs/Makefile index c380ca7b7d..0451000e2c 100644 --- a/src/runtime-rs/Makefile +++ b/src/runtime-rs/Makefile @@ -208,18 +208,18 @@ ifneq (,$(DBCMD)) SYSCONFIG_PATHS += $(SYSCONFIG_DB) CONFIGS += $(CONFIG_DB) # dragonball-specific options (all should be suffixed by "_DB") - VMROOTFSDRIVER_DB := virtio-blk-pci + VMROOTFSDRIVER_DB := virtio-blk-pci DEFMAXVCPUS_DB := 1 DEFBLOCKSTORAGEDRIVER_DB := virtio-blk-mmio DEFNETWORKMODEL_DB := tcfilter KERNELPARAMS_DB = console=ttyS1 agent.log_vport=1025 - KERNELTYPE_DB = uncompressed + KERNELTYPE_DB = uncompressed KERNEL_NAME_DB = $(call MAKE_KERNEL_NAME_DB,$(KERNELTYPE_DB)) KERNELPATH_DB = $(KERNELDIR)/$(KERNEL_NAME_DB) DEFSANDBOXCGROUPONLY = true RUNTIMENAME := virt_container PIPESIZE := 1 - DBSHAREDFS := inline-virtio-fs + DBSHAREDFS := inline-virtio-fs endif ifneq (,$(CLHCMD))