From f90bb0e92d029696f29829a44e416b2db4e91801 Mon Sep 17 00:00:00 2001 From: Jean Delvare Date: Thu, 22 Jan 2009 09:55:33 +0000 Subject: [PATCH] Clarify Linux kernel vs. GNU/Linux OS. git-svn-id: http://lm-sensors.org/svn/i2c-tools/trunk@5619 7894878c-1315-0410-8ee3-d5d059ff63e0 --- README | 7 ++++--- py-smbus/smbusmodule.c | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README b/README index f2e58ca..d1d8240 100644 --- a/README +++ b/README @@ -1,9 +1,10 @@ I2C TOOLS FOR LINUX =================== -This package contains an heterogeneous set of I2C tools for Linux. These tools -were originally part of the lm-sensors package but were finally split into -their own package for convenience. +This package contains an heterogeneous set of I2C tools for the Linux kernel. +These tools were originally part of the lm-sensors project but were finally +split into their own package for convenience. They compile, run and have been +tested on GNU/Linux. CONTENTS diff --git a/py-smbus/smbusmodule.c b/py-smbus/smbusmodule.c index afc54a4..a881448 100644 --- a/py-smbus/smbusmodule.c +++ b/py-smbus/smbusmodule.c @@ -34,9 +34,10 @@ PyDoc_STRVAR(SMBus_module_doc, "This module defines an object type that allows SMBus transactions\n" - "on Linux hosts. The host kernel must have I2C support, I2C device\n" - "interface support, and a bus adapter driver. All of these can be\n" - "either built-in to the kernel, or loaded from modules.\n" + "on hosts running the Linux kernel. The host kernel must have I2C\n" + "support, I2C device interface support, and a bus adapter driver.\n" + "All of these can be either built-in to the kernel, or loaded from\n" + "modules.\n" "\n" "Because the I2C device interface is opened R/W, users of this\n" "module usually must have root permissions.\n");