2014-09-29 01:46:11 +08:00
|
|
|
############################################################################
|
|
|
|
# fs/vfs/Make.defs
|
|
|
|
#
|
2021-02-03 21:47:23 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2014-09-29 01:46:11 +08:00
|
|
|
#
|
2021-02-03 21:47:23 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-09-29 01:46:11 +08:00
|
|
|
#
|
2021-02-03 21:47:23 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2014-09-29 01:46:11 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Common file/socket descriptor support
|
|
|
|
|
2021-07-09 13:43:26 +08:00
|
|
|
CSRCS += fs_chstat.c fs_close.c fs_dup.c fs_dup2.c fs_fcntl.c fs_epoll.c
|
|
|
|
CSRCS += fs_fchstat.c fs_fstat.c fs_fstatfs.c fs_ioctl.c fs_lseek.c
|
|
|
|
CSRCS += fs_mkdir.c fs_open.c fs_poll.c fs_pread.c fs_pwrite.c fs_read.c
|
|
|
|
CSRCS += fs_rename.c fs_rmdir.c fs_select.c fs_sendfile.c fs_stat.c
|
|
|
|
CSRCS += fs_statfs.c fs_unlink.c fs_write.c
|
2014-12-08 21:14:31 +08:00
|
|
|
|
|
|
|
# Certain interfaces are not available if there is no mountpoint support
|
|
|
|
|
|
|
|
ifneq ($(CONFIG_DISABLE_MOUNTPOINT),y)
|
2018-01-04 06:03:56 +08:00
|
|
|
CSRCS += fs_fsync.c fs_truncate.c
|
2014-12-08 21:14:31 +08:00
|
|
|
endif
|
2014-09-29 01:46:11 +08:00
|
|
|
|
2017-02-03 00:39:41 +08:00
|
|
|
ifneq ($(CONFIG_PSEUDOFS_SOFTLINKS),0)
|
2020-07-01 13:37:39 +08:00
|
|
|
CSRCS += fs_symlink.c fs_readlink.c
|
2017-02-03 00:39:41 +08:00
|
|
|
endif
|
|
|
|
|
2014-09-29 01:46:11 +08:00
|
|
|
# Stream support
|
|
|
|
|
2020-08-13 18:17:29 +08:00
|
|
|
ifeq ($(CONFIG_FILE_STREAM),y)
|
2014-09-29 01:46:11 +08:00
|
|
|
CSRCS += fs_fdopen.c
|
|
|
|
endif
|
|
|
|
|
2020-07-28 19:08:48 +08:00
|
|
|
# Support for eventfd
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_EVENT_FD),y)
|
|
|
|
CSRCS += fs_eventfd.c
|
|
|
|
endif
|
|
|
|
|
2021-12-17 08:20:26 +08:00
|
|
|
# Support for timerfd
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_TIMER_FD),y)
|
|
|
|
CSRCS += fs_timerfd.c
|
|
|
|
endif
|
|
|
|
|
2014-09-29 01:46:11 +08:00
|
|
|
# Include vfs build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path vfs
|
|
|
|
VPATH += :vfs
|