├── .gitignore ├── Makefile ├── about_the_author.xml ├── appa.xml ├── biblio.xml ├── book.xml ├── ch00.xml ├── ch01.xml ├── ch02.xml ├── ch03.xml ├── ch04.xml ├── ch05.xml ├── ch06.xml ├── ch07.xml ├── ch08.xml ├── ch09.xml ├── ch10.xml ├── ch11.xml ├── images ├── config_search.png ├── config_search_found.png ├── config_search_pl2303.png ├── config_search_pl2303_found.png ├── gconfig_1.png ├── gconfig_2.png ├── gconfig_3.png ├── kernel.org.png ├── kernel.org.v2.6.png ├── kernel.org_finger_banner.png ├── kernel.org_patch.png ├── kernel_releases.dia ├── kernel_releases.eps ├── kernel_releases.png ├── menuconfig_1.png ├── menuconfig_2.png ├── menuconfig_3.png ├── menuconfig_4.png ├── menuconfig_5.png ├── menuconfig_6.png ├── xconfig_1.png ├── xconfig_2.png └── xconfig_3.png ├── license.xml ├── lkn_outline ├── lkn_proposal ├── old ├── ch13.xml.old └── ch13.xml.orig ├── rst ├── .gitignore ├── Makefile ├── ch00.rst ├── conf.py ├── index.rst └── lkn.style ├── schedule ├── src ├── 2.6.15-rc5.raw.xml ├── 2.6.17.raw.xml ├── count_symbols.sh ├── find_all_modules.sh ├── get-driver.sh ├── gregkh_symbols.txt ├── gregkh_symbols.txt.orig ├── series └── xml-config.patch ├── status └── test_book.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.swp 3 | *.tar.gz 4 | src/linux-2.6.* 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/Makefile -------------------------------------------------------------------------------- /about_the_author.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/about_the_author.xml -------------------------------------------------------------------------------- /appa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/appa.xml -------------------------------------------------------------------------------- /biblio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/biblio.xml -------------------------------------------------------------------------------- /book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/book.xml -------------------------------------------------------------------------------- /ch00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch00.xml -------------------------------------------------------------------------------- /ch01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch01.xml -------------------------------------------------------------------------------- /ch02.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch02.xml -------------------------------------------------------------------------------- /ch03.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch03.xml -------------------------------------------------------------------------------- /ch04.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch04.xml -------------------------------------------------------------------------------- /ch05.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch05.xml -------------------------------------------------------------------------------- /ch06.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch06.xml -------------------------------------------------------------------------------- /ch07.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch07.xml -------------------------------------------------------------------------------- /ch08.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch08.xml -------------------------------------------------------------------------------- /ch09.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch09.xml -------------------------------------------------------------------------------- /ch10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch10.xml -------------------------------------------------------------------------------- /ch11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/ch11.xml -------------------------------------------------------------------------------- /images/config_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/config_search.png -------------------------------------------------------------------------------- /images/config_search_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/config_search_found.png -------------------------------------------------------------------------------- /images/config_search_pl2303.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/config_search_pl2303.png -------------------------------------------------------------------------------- /images/config_search_pl2303_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/config_search_pl2303_found.png -------------------------------------------------------------------------------- /images/gconfig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/gconfig_1.png -------------------------------------------------------------------------------- /images/gconfig_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/gconfig_2.png -------------------------------------------------------------------------------- /images/gconfig_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/gconfig_3.png -------------------------------------------------------------------------------- /images/kernel.org.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel.org.png -------------------------------------------------------------------------------- /images/kernel.org.v2.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel.org.v2.6.png -------------------------------------------------------------------------------- /images/kernel.org_finger_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel.org_finger_banner.png -------------------------------------------------------------------------------- /images/kernel.org_patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel.org_patch.png -------------------------------------------------------------------------------- /images/kernel_releases.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel_releases.dia -------------------------------------------------------------------------------- /images/kernel_releases.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel_releases.eps -------------------------------------------------------------------------------- /images/kernel_releases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/kernel_releases.png -------------------------------------------------------------------------------- /images/menuconfig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_1.png -------------------------------------------------------------------------------- /images/menuconfig_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_2.png -------------------------------------------------------------------------------- /images/menuconfig_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_3.png -------------------------------------------------------------------------------- /images/menuconfig_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_4.png -------------------------------------------------------------------------------- /images/menuconfig_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_5.png -------------------------------------------------------------------------------- /images/menuconfig_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/menuconfig_6.png -------------------------------------------------------------------------------- /images/xconfig_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/xconfig_1.png -------------------------------------------------------------------------------- /images/xconfig_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/xconfig_2.png -------------------------------------------------------------------------------- /images/xconfig_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/images/xconfig_3.png -------------------------------------------------------------------------------- /license.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/license.xml -------------------------------------------------------------------------------- /lkn_outline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/lkn_outline -------------------------------------------------------------------------------- /lkn_proposal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/lkn_proposal -------------------------------------------------------------------------------- /old/ch13.xml.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/old/ch13.xml.old -------------------------------------------------------------------------------- /old/ch13.xml.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/old/ch13.xml.orig -------------------------------------------------------------------------------- /rst/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /rst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/rst/Makefile -------------------------------------------------------------------------------- /rst/ch00.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/rst/ch00.rst -------------------------------------------------------------------------------- /rst/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/rst/conf.py -------------------------------------------------------------------------------- /rst/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/rst/index.rst -------------------------------------------------------------------------------- /rst/lkn.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/rst/lkn.style -------------------------------------------------------------------------------- /schedule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/schedule -------------------------------------------------------------------------------- /src/2.6.15-rc5.raw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/2.6.15-rc5.raw.xml -------------------------------------------------------------------------------- /src/2.6.17.raw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/2.6.17.raw.xml -------------------------------------------------------------------------------- /src/count_symbols.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/count_symbols.sh -------------------------------------------------------------------------------- /src/find_all_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/find_all_modules.sh -------------------------------------------------------------------------------- /src/get-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/get-driver.sh -------------------------------------------------------------------------------- /src/gregkh_symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/gregkh_symbols.txt -------------------------------------------------------------------------------- /src/gregkh_symbols.txt.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/gregkh_symbols.txt.orig -------------------------------------------------------------------------------- /src/series: -------------------------------------------------------------------------------- 1 | xml-config.patch 2 | -------------------------------------------------------------------------------- /src/xml-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/src/xml-config.patch -------------------------------------------------------------------------------- /status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/status -------------------------------------------------------------------------------- /test_book.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregkh/lkn/HEAD/test_book.xml --------------------------------------------------------------------------------