incubator-nuttx/fs/procfs
Brennan Ashton 46b0f6d6ee fdt: Add initial FDT support and procfs for userspace export
VELAPLATFO-12536

This provides the initial hooks for Flattened Device Tree support
with QEMU RV. It also provides a new procfs file that exposes the
fdt to userspace much like the /sys/firmware/fdt endpoint in Linux.
See https://www.kernel.org/doc/Documentation/ABI/testing/sysfs-firmware-ofw

Nodes in the fdt are not yet usable by the OS.

Signed-off-by: Brennan Ashton <bashton@brennanashton.com>
Signed-off-by: liaoao <liaoao@xiaomi.com>
2023-08-05 12:41:06 -07:00
..
CMakeLists.txt build: add initial cmake build system 2023-07-08 13:50:48 +08:00
Kconfig fdt: Add initial FDT support and procfs for userspace export 2023-08-05 12:41:06 -07:00
Make.defs fdt: Add initial FDT support and procfs for userspace export 2023-08-05 12:41:06 -07:00
README.txt
fs_procfs.c fdt: Add initial FDT support and procfs for userspace export 2023-08-05 12:41:06 -07:00
fs_procfscpuinfo.c procfs:add /proc/cpuinfo 2023-05-27 03:29:41 +08:00
fs_procfscpuload.c procfs: Add g_ prefix to all procfs_operations 2023-04-22 03:33:50 -04:00
fs_procfscritmon.c procfs: Add g_ prefix to all procfs_operations 2023-04-22 03:33:50 -04:00
fs_procfsfdt.c fdt: Add initial FDT support and procfs for userspace export 2023-08-05 12:41:06 -07:00
fs_procfsiobinfo.c procfs: Add g_ prefix to all procfs_operations 2023-04-22 03:33:50 -04:00
fs_procfsmeminfo.c memdump: support dump the leak memory (malloced but task exit) 2023-07-31 05:48:33 -07:00
fs_procfsproc.c fs_procfsproc:Fix the wrong position of information display, integrate the fd information of socket and file 2023-08-03 10:33:53 -07:00
fs_procfstcbinfo.c sched: Rename DEBUG_TCBINFO to ARCH_HAVE_TCBINFO 2023-07-26 09:33:38 +02:00
fs_procfsuptime.c Indent the define statement by two spaces 2023-05-21 09:52:08 -03:00
fs_procfsutil.c procfs:add /proc/cpuinfo 2023-05-27 03:29:41 +08:00
fs_procfsversion.c procfs: Add g_ prefix to all procfs_operations 2023-04-22 03:33:50 -04:00
fs_skeleton.c change strcpy to strlcpy 2023-02-24 12:15:40 +08:00

README.txt

fs/procfs README
================

  This is a tiny procfs file system that allows read-only access to a few
  attributes of a task or thread.  This tiny procfs fs file system can be
  built into the system by enabling:

    CONFIG_FS_PROCFS=y

  It can then be mounted from the NSH command like like:

    nsh> mount -t procfs /proc

Example
=======

  NuttShell (NSH) NuttX-6.31
  nsh> mount -t procfs /proc

  nsh> ls /proc
  /proc:
   0/
   1/

  nsh> ls /proc/1
  /proc/1:
   status
   cmdline

  nsh> cat /proc/1/status
  Name:       init
  Type:       Task
  State:      Running
  Priority:   100
  Scheduler:  SCHED_FIFO
  SigMask:    00000000

  nsh> cat /proc/1/cmdline
  init

  nsh> sleep 100 &
  sleep [2:100]
  nsh> ls /proc
  ls /proc
  /proc:
   0/
   1/
   2/

  nsh> cat /proc/2/cmdline
  <pthread> 0x527420