From 0a7eeb916dcfe6dd832cbdc342488ffb3eb0f932 Mon Sep 17 00:00:00 2001 From: Juergen Gross Date: Mon, 20 Jun 2022 09:38:16 +0200 Subject: [PATCH] mini-os: rename console/xenbus.c to consfront.c Move console/xenbus.c into the main directory and rename it to consfront.c. Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault --- Makefile | 2 +- console/xenbus.c => consfront.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename console/xenbus.c => consfront.c (100%) diff --git a/Makefile b/Makefile index 16d1f5d..509d927 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,7 @@ TARGET := mini-os SUBDIRS := lib xenbus console src-$(CONFIG_BLKFRONT) += blkfront.c +src-$(CONFIG_CONSFRONT) += consfront.c src-$(CONFIG_TPMFRONT) += tpmfront.c src-$(CONFIG_TPM_TIS) += tpm_tis.c src-$(CONFIG_TPMBACK) += tpmback.c @@ -70,7 +71,6 @@ src-$(CONFIG_LIBXS) += lib/xs.c src-y += console/console.c src-y += console/xencons_ring.c -src-$(CONFIG_CONSFRONT) += console/xenbus.c # The common mini-os objects to build. APP_OBJS := diff --git a/console/xenbus.c b/consfront.c similarity index 100% rename from console/xenbus.c rename to consfront.c -- 2.39.5