From aa8d6365074487567d55992b9e61a15c97436eae Mon Sep 17 00:00:00 2001 From: Helmut Buchsbaum Date: Mon, 4 Apr 2022 20:49:05 +0200 Subject: [PATCH] hv: Fixup serial.conf permissions Tracked-On: #6688 Signed-off-by: Helmut Buchsbaum --- hypervisor/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/Makefile b/hypervisor/Makefile index 81f38266e..25d43b0e7 100644 --- a/hypervisor/Makefile +++ b/hypervisor/Makefile @@ -406,7 +406,7 @@ install: $(HV_OBJDIR)/$(HV_FILE).32.out $(HV_OBJDIR)/$(HV_FILE).bin install -D $(HV_OBJDIR)/acpi/*.bin -t $(DESTDIR)$(libdir)/acrn/acpi/; \ fi @if [ -e "$(HV_OBJDIR)/serial.conf" ];then \ - install -D -b $(HV_OBJDIR)/serial.conf -t $(DESTDIR)$(sysconfdir)/; \ + install -D -b -m 0644 $(HV_OBJDIR)/serial.conf -t $(DESTDIR)$(sysconfdir)/; \ fi install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out