aboutsummaryrefslogtreecommitdiffstats
path: root/docs/misc/distro_mapping.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/misc/distro_mapping.txt')
-rw-r--r--docs/misc/distro_mapping.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/misc/distro_mapping.txt b/docs/misc/distro_mapping.txt
index d91495b925..7f41b96474 100644
--- a/docs/misc/distro_mapping.txt
+++ b/docs/misc/distro_mapping.txt
@@ -2,26 +2,26 @@ With directory layout differences between Red Hat, Debian, Suse and
other distros one needs to set the variables for the elements below
-----------------+------------------+---------------+----------------+
- | RedHat (default) | Debian | Suse |
+ | Red Hat | Debian | Suse |
-----------------+------------------+---------------+----------------+
CONFIG_LEAF_DIR | sysconfig | default | sysconfig |
SUBSYS_DIR | /var/run/subsys | /var/run | /var/run |
INITD_DIR | /etc/rc.d/init.d | /etc/init.d | /etc/init.d |
-----------------+------------------+---------------+----------------+
-The build currently defaults to the elements used by Red Hat.
-For others, these env variables must be set in the shell env
-or modified in Config.mk before running make.
+The existence of these directories are tested at build-time (on the
+build host, via the "setvar_dir" macro in Config.mk) and for some
+scripts at run-time. If the Red Hat directory exists, it is used;
+otherwise the Debian one is used.
-This mechanism sets the location that files are installed to, but does
-not change the code itself. Scripts that refer to files affected by these
-directories must check each possible location at run time.
+You can override this by setting the variables in the environment or
+your ".config" (which is included by .config).
To add support for new distributions that don't use the above locations,
one must grep for the above elements and add appropriate checks.
-For example if a new distro uses /etc/bork as it's config dir, It's not
-sufficient to set CONFIG_LEAF_DIR=bork, one must also add tests for the
+For example if a new distro uses /etc/bork as its config dir, it's not
+sufficient to set CONFIG_LEAF_DIR=bork; one must also add tests for the
existance of the bork dir in every context where config files are read.