summaryrefslogtreecommitdiffstats
path: root/utils/include/pathnames.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/include/pathnames.h')
-rw-r--r--utils/include/pathnames.h210
1 files changed, 0 insertions, 210 deletions
diff --git a/utils/include/pathnames.h b/utils/include/pathnames.h
deleted file mode 100644
index 8f1bb56..0000000
--- a/utils/include/pathnames.h
+++ /dev/null
@@ -1,210 +0,0 @@
-/*
- * No copyright is claimed. This code is in the public domain; do with
- * it what you wish.
- */
-#ifndef PATHNAMES_H
-#define PATHNAMES_H
-
-#ifdef HAVE_PATHS_H
-# include <paths.h>
-#endif
-
-#ifndef __STDC__
-# error "we need an ANSI compiler"
-#endif
-
-/* used by kernel in /proc (e.g. /proc/swaps) for deleted files */
-#define PATH_DELETED_SUFFIX " (deleted)"
-
-/* DEFPATHs from <paths.h> don't include /usr/local */
-#undef _PATH_DEFPATH
-
-#ifdef USE_USRDIR_PATHS_ONLY
-# define _PATH_DEFPATH "/usr/local/bin:/usr/bin"
-#else
-# define _PATH_DEFPATH "/usr/local/bin:/bin:/usr/bin"
-#endif
-
-#undef _PATH_DEFPATH_ROOT
-
-#ifdef USE_USRDIR_PATHS_ONLY
-# define _PATH_DEFPATH_ROOT "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin"
-#else
-# define _PATH_DEFPATH_ROOT "/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
-#endif
-
-#define _PATH_HUSHLOGIN ".hushlogin"
-#define _PATH_HUSHLOGINS "/etc/hushlogins"
-
-#define _PATH_NOLOGIN_TXT "/etc/nologin.txt"
-
-#ifndef _PATH_MAILDIR
-# define _PATH_MAILDIR "/var/spool/mail"
-#endif
-#define _PATH_MOTDFILE "/usr/share/misc/motd:/run/motd:/etc/motd"
-#ifndef _PATH_NOLOGIN
-# define _PATH_NOLOGIN "/etc/nologin"
-#endif
-#define _PATH_VAR_NOLOGIN "/var/run/nologin"
-
-#ifndef _PATH_LOGIN
-# define _PATH_LOGIN "/bin/login"
-#endif
-#define _PATH_SHUTDOWN "/sbin/shutdown"
-#define _PATH_POWEROFF "/sbin/poweroff"
-
-#define _PATH_TERMCOLORS_DIRNAME "terminal-colors.d"
-#define _PATH_TERMCOLORS_DIR "/etc/" _PATH_TERMCOLORS_DIRNAME
-
-/* login paths */
-#define _PATH_PASSWD "/etc/passwd"
-#define _PATH_GSHADOW "/etc/gshadow"
-#define _PATH_GROUP "/etc/group"
-#define _PATH_SHADOW_PASSWD "/etc/shadow"
-#define _PATH_SHELLS "/etc/shells"
-
-#ifndef _PATH_TMP
-# define _PATH_TMP "/tmp/"
-#endif
-
-#ifndef _PATH_BTMP
-# define _PATH_BTMP "/var/log/btmp"
-#endif
-
-#define _PATH_ISSUE_FILENAME "issue"
-#define _PATH_ISSUE_DIRNAME _PATH_ISSUE_FILENAME ".d"
-
-#define _PATH_ISSUE "/etc/" _PATH_ISSUE_FILENAME
-#define _PATH_ISSUEDIR "/etc/" _PATH_ISSUE_DIRNAME
-
-#define _PATH_OS_RELEASE_ETC "/etc/os-release"
-#define _PATH_OS_RELEASE_USR "/usr/lib/os-release"
-#define _PATH_NUMLOCK_ON _PATH_RUNSTATEDIR "/numlock-on"
-#define _PATH_LOGINDEFS "/etc/login.defs"
-
-/* misc paths */
-#define _PATH_WORDS "/usr/share/dict/words"
-#define _PATH_WORDS_ALT "/usr/share/dict/web2"
-
-/* mount paths */
-#define _PATH_FILESYSTEMS "/etc/filesystems"
-#define _PATH_PROC_SWAPS "/proc/swaps"
-#define _PATH_PROC_FILESYSTEMS "/proc/filesystems"
-#define _PATH_PROC_MOUNTS "/proc/mounts"
-#define _PATH_PROC_PARTITIONS "/proc/partitions"
-#define _PATH_PROC_DEVICES "/proc/devices"
-#define _PATH_PROC_MOUNTINFO "/proc/self/mountinfo"
-#define _PATH_PROC_LOCKS "/proc/locks"
-#define _PATH_PROC_CDROMINFO "/proc/sys/dev/cdrom/info"
-
-#define _PATH_PROC_UIDMAP "/proc/self/uid_map"
-#define _PATH_PROC_GIDMAP "/proc/self/gid_map"
-#define _PATH_PROC_SETGROUPS "/proc/self/setgroups"
-
-#define _PATH_PROC_FDDIR "/proc/self/fd"
-
-#define _PATH_PROC_ATTR_CURRENT "/proc/self/attr/current"
-#define _PATH_PROC_ATTR_EXEC "/proc/self/attr/exec"
-#define _PATH_PROC_CAPLASTCAP "/proc/sys/kernel/cap_last_cap"
-
-
-#define _PATH_SYS_BLOCK "/sys/block"
-#define _PATH_SYS_DEVBLOCK "/sys/dev/block"
-#define _PATH_SYS_DEVCHAR "/sys/dev/char"
-#define _PATH_SYS_CLASS "/sys/class"
-#define _PATH_SYS_SCSI "/sys/bus/scsi"
-
-#define _PATH_SYS_SELINUX "/sys/fs/selinux"
-#define _PATH_SYS_APPARMOR "/sys/kernel/security/apparmor"
-
-#ifndef _PATH_MOUNTED
-# ifdef MOUNTED /* deprecated */
-# define _PATH_MOUNTED MOUNTED
-# else
-# define _PATH_MOUNTED "/etc/mtab"
-# endif
-#endif
-
-#ifndef _PATH_MNTTAB
-# ifdef MNTTAB /* deprecated */
-# define _PATH_MNTTAB MNTTAB
-# else
-# define _PATH_MNTTAB "/etc/fstab"
-# endif
-#endif
-
-#ifndef _PATH_DEV
- /*
- * The tailing '/' in _PATH_DEV is there for compatibility with libc.
- */
-# define _PATH_DEV "/dev/"
-#endif
-
-#define _PATH_DEV_MAPPER "/dev/mapper"
-
-#define _PATH_DEV_MEM "/dev/mem"
-
-#define _PATH_DEV_LOOP "/dev/xloop"
-#define _PATH_DEV_LOOPCTL "/dev/xloop-control"
-
-/* udev paths */
-#define _PATH_DEV_BYLABEL "/dev/disk/by-label"
-#define _PATH_DEV_BYUUID "/dev/disk/by-uuid"
-#define _PATH_DEV_BYID "/dev/disk/by-id"
-#define _PATH_DEV_BYPATH "/dev/disk/by-path"
-#define _PATH_DEV_BYPARTLABEL "/dev/disk/by-partlabel"
-#define _PATH_DEV_BYPARTUUID "/dev/disk/by-partuuid"
-
-/* hwclock paths */
-#ifdef CONFIG_ADJTIME_PATH
-# define _PATH_ADJTIME CONFIG_ADJTIME_PATH
-#else
-# define _PATH_ADJTIME "/etc/adjtime"
-#endif
-
-#ifdef __ia64__
-# define _PATH_RTC_DEV "/dev/efirtc"
-#else
-# define _PATH_RTC_DEV "/dev/rtc0"
-#endif
-
-/* raw paths*/
-#define _PATH_RAWDEVDIR "/dev/raw/"
-#define _PATH_RAWDEVCTL _PATH_RAWDEVDIR "rawctl"
-/* deprecated */
-#define _PATH_RAWDEVCTL_OLD "/dev/rawctl"
-
-/* ipc paths */
-#define _PATH_PROC_SYSV_MSG "/proc/sysvipc/msg"
-#define _PATH_PROC_SYSV_SEM "/proc/sysvipc/sem"
-#define _PATH_PROC_SYSV_SHM "/proc/sysvipc/shm"
-#define _PATH_PROC_IPC_MSGMAX "/proc/sys/kernel/msgmax"
-#define _PATH_PROC_IPC_MSGMNB "/proc/sys/kernel/msgmnb"
-#define _PATH_PROC_IPC_MSGMNI "/proc/sys/kernel/msgmni"
-#define _PATH_PROC_IPC_SEM "/proc/sys/kernel/sem"
-#define _PATH_PROC_IPC_SHMALL "/proc/sys/kernel/shmall"
-#define _PATH_PROC_IPC_SHMMAX "/proc/sys/kernel/shmmax"
-#define _PATH_PROC_IPC_SHMMNI "/proc/sys/kernel/shmmni"
-
-/* irqtop paths */
-#define _PATH_PROC_INTERRUPTS "/proc/interrupts"
-#define _PATH_PROC_SOFTIRQS "/proc/softirqs"
-#define _PATH_PROC_UPTIME "/proc/uptime"
-
-/* kernel command line */
-#define _PATH_PROC_CMDLINE "/proc/cmdline"
-
-/* logger paths */
-#define _PATH_DEVLOG "/dev/log"
-
-/* ctrlaltdel paths */
-#define _PATH_PROC_CTRL_ALT_DEL "/proc/sys/kernel/ctrl-alt-del"
-
-/* lscpu paths */
-#define _PATH_PROC_CPUINFO "/proc/cpuinfo"
-
-/* rfkill paths */
-#define _PATH_DEV_RFKILL "/dev/rfkill"
-#define _PATH_SYS_RFKILL "/sys/class/rfkill"
-
-#endif /* PATHNAMES_H */