-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Have devname use opendir instead of table lookup by default
- Loading branch information
Showing
4 changed files
with
81 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,34 @@ | ||
/* paths.h <[email protected]> */ | ||
|
||
#ifndef ___PATHS_H | ||
#define ___PATHS_H | ||
|
||
|
||
#define _PATH_GETTY "/bin/getty" | ||
#define _PATH_LOGIN "/bin/login" | ||
#define _PATH_BSHELL "/bin/sh" | ||
#define _PATH_DEFPATH "/bin:." | ||
#define _PATH_DEV "/dev" | ||
#define _PATH_CONSOLE "/dev/console" | ||
#define _PATH_TTY "/dev/tty" | ||
#define _PATH_DEVNULL "/dev/null" | ||
#define _PATH_GROUP "/etc/group" | ||
#define _PATH_HOSTNAME "/etc/hostname" | ||
#define _PATH_INITLVL "/etc/initlvl" | ||
#define _PATH_INITTAB "/etc/inittab" | ||
#define _PATH_ISSUE "/etc/issue" | ||
#define _PATH_MOTD "/etc/motd" | ||
#define _PATH_PASSWD "/etc/passwd" | ||
#define _PATH_ERRSTRING "/etc/perror" | ||
#define _PATH_TERMCAP "/etc/termcap" | ||
#define _PATH_LOCALE "/lib/locale" | ||
#define _PATH_MANPAGES "/lib" | ||
#define _PATH_TMP "/tmp" | ||
#define _PATH_UTMP "/var/utmp" | ||
#define _PATH_WTMP "/var/log/wtmp" | ||
#define _PATH_LASTLOG "/var/log/lastlog" | ||
#define _PATH_DOCBASE "/var/www" | ||
#define _PATH_CRONDIR "/var/cron" | ||
#define _PATH_CRONTAB "/var/cron/root" | ||
#define _PATH_CRONLOG "/var/cron/cron.log" | ||
#define ___PATHS_H | ||
/* paths.h <[email protected]> */ | ||
|
||
#define _PATH_GETTY "/bin/getty" | ||
#define _PATH_LOGIN "/bin/login" | ||
#define _PATH_BSHELL "/bin/sh" | ||
#define _PATH_DEFPATH "/bin:." | ||
#define _PATH_DEV "/dev" | ||
#define _PATH_DEVSL "/dev/" | ||
#define _PATH_CONSOLE "/dev/console" | ||
#define _PATH_TTY "/dev/tty" | ||
#define _PATH_DEVNULL "/dev/null" | ||
#define _PATH_GROUP "/etc/group" | ||
#define _PATH_HOSTNAME "/etc/hostname" | ||
#define _PATH_INITLVL "/etc/initlvl" | ||
#define _PATH_INITTAB "/etc/inittab" | ||
#define _PATH_ISSUE "/etc/issue" | ||
#define _PATH_MOTD "/etc/motd" | ||
#define _PATH_PASSWD "/etc/passwd" | ||
#define _PATH_ERRSTRING "/etc/perror" | ||
#define _PATH_TERMCAP "/etc/termcap" | ||
#define _PATH_LOCALE "/lib/locale" | ||
#define _PATH_MANPAGES "/lib" | ||
#define _PATH_TMP "/tmp" | ||
#define _PATH_UTMP "/var/utmp" | ||
#define _PATH_WTMP "/var/log/wtmp" | ||
#define _PATH_LASTLOG "/var/log/lastlog" | ||
#define _PATH_DOCBASE "/var/www" | ||
#define _PATH_CRONDIR "/var/cron" | ||
#define _PATH_CRONTAB "/var/cron/root" | ||
#define _PATH_CRONLOG "/var/cron/cron.log" | ||
|
||
#endif /* __PATHS_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters