diff options
author | Gordon Ross <gwr@nexenta.com> | 2011-06-07 23:01:58 -0400 |
---|---|---|
committer | Gordon Ross <gwr@nexenta.com> | 2011-06-07 23:01:58 -0400 |
commit | 359d7d270e432af5847f177627b92f048af0ec23 (patch) | |
tree | 1fa3583058929ab3d50ad2cdb016a739b65651af /usr/src | |
parent | 6132907e261803ca6456a594bab3ce7258ecc044 (diff) | |
download | illumos-gfx-drm-359d7d270e432af5847f177627b92f048af0ec23.tar.gz |
rename to README
--HG--
rename : usr/src/Readme.txt => README
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/Readme.txt | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/usr/src/Readme.txt b/usr/src/Readme.txt deleted file mode 100644 index ca33489..0000000 --- a/usr/src/Readme.txt +++ /dev/null @@ -1,36 +0,0 @@ - -This is a skeleton of an "ON" (illumos) build. - -You can use it to build drivers, libraries, and commands, -that you might plan to later integrate into illumos, but -don't want to wait for full illumos builds while you're -developing your code. - -As provided, this skeleton builds one driver, one library, -and one command, all named "foo". These are intentionally -trivial objects, just to demonstrate how it builds. - -This does not do any package building (no IPS, no SysV). -Instead, this uses the script Install-foo as an example of -how one might do a developer-style "quick" install. - -Here is a list of all the places you might want to copy -to add another driver, library, or command: - - uts/common/sys/foo.h - uts/common/io/foo/* - uts/common/Makefile.files (FOO_OBJS += foo.o) - uts/common/Makefile.rules (common/io/foo, two places) - uts/intel/Makefile.intel.shared (DRV_KMODS += foo) - uts/intel/foo/Makefile - uts/sparc/Makefile.sparc.shared (DRV_KMODS += foo) - uts/sparc/foo/Makefile - - lib/libfoo/Makefile - lib/libfoo/Makefile.com - lib/libfoo/*/Makefile - lib/libfoo/common/* - - cmd/foo - - Install-foo |