arch/sim: Rename up_vfork[32|64].S to up_vfork_x86[_64].S

to follow other arch/x86 arch/x86_64 convention

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2022-01-07 10:45:25 +08:00
committed by Xiang Xiao
parent 1a02556265
commit 49c00e0361
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -41,12 +41,12 @@ REQUIREDOBJS = $(LINKOBJS)
ifeq ($(CONFIG_HOST_X86_64),y)
ifeq ($(CONFIG_SIM_M32),y)
ASRCS += up_vfork32.S
ASRCS += up_vfork_x86.S
else
ASRCS += up_vfork64.S
ASRCS += up_vfork_x86_64.S
endif
else ifeq ($(CONFIG_HOST_X86),y)
ASRCS += up_vfork32.S
ASRCS += up_vfork_x86.S
else ifeq ($(CONFIG_HOST_ARM),y)
ASRCS += up_vfork_arm.S
endif
@@ -1,5 +1,5 @@
/************************************************************************************
* arch/sim/src/sim/up_vfork32.S
* arch/sim/src/sim/up_vfork_x86.S
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
@@ -1,5 +1,5 @@
/************************************************************************************
* arch/sim/src/sim/up_vfork64.S
* arch/sim/src/sim/up_vfork_x86_64.S
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with