Commit baf0fb4b authored by Vitaly Lipatov's avatar Vitaly Lipatov

update readme, messages and comments

parent dd267521
# Etersoft (c) 2007, 2008, 2009, 2010
# Multiplatform spec for autobuild system
# in kernel build dir you can have gcc_version.inc file with export GCC_VERSION=x.xx
# For build install,
# kernel-headers-modules-XXXX for ALT Linux
# kernel-devel-XXXX for FCx / ASP Linux
# dkms-etercifs for Mandriva 2009
# linux-headers for Debian / Ubuntu
# kernel-source-XXXX for SuSe
# kernel-source-XXXX for Slackware / MOPSLinux
# Multiplatform spec for Korinf autobuild system (ALT Linux package spec policy)
%define src_package_name kernel-source-etercifs
%define src_legacy_version 1.50c
%define src_centos52_version 1.50c
%define src_centos53_version 1.54
......@@ -81,6 +72,9 @@ Obsoletes: %src_package_name-2.6.29
Requires: gcc make
%description
This package contains Etersoft modified CIFS kernel module,
supports WINE@Etersoft sharing access support.
The CIFS VFS is a virtual file system for Linux to allow access to
servers and storage appliances compliant with the SNIA CIFS Specification
version 1.0 or later.
......@@ -101,8 +95,6 @@ addition of upcoming improvements to the mount helper (mount.cifs) the
CIFS VFS will be able to take advantage of the new CIFS URL specification
though.
This package has Etersoft's patches for WINE@Etersoft sharing access support.
%prep
%setup
......
......@@ -5,18 +5,18 @@
-----------------------------------------------------------
Виталий Липатов <lav@etersoft.ru>
Константин Баев <kipruss@etersoft.ru>
Павел Шиловский <piastry@etersoft.ru>
Ссылки:
-----------------------------------------------------------
Страница на Wiki "Сборка драйвера etercifs" - http://wiki.etersoft.ru/Etercifs
Страница проекта на Wiki - http://wiki.etersoft.ru/Etercifs
Отслеживание ошибок осуществляется в Bugzilla - http://bugs.etersoft.ru/
Часть документации к WINE@Etersoft "Настройка совместной работы по протоколу
CIFS" - http://www.etersoft.ru/content/view/56/156/#cifs
Изменения исходных текстов можно посмотреть в системе контроля версий.
В этом качестве используется git.
Исходные тексты можно получить через систему контроля версий git -
http://git.etersoft.ru/projects/etercifs.git/
Скачать пакеты для различных дистрибутивов -
......
#!/bin/sh
# 2007-2008 (c) Etersoft http://etersoft.ru
# 2007-2010 (c) Etersoft http://etersoft.ru
# Author: Vitaly Lipatov <lav@etersoft.ru>
# GNU Public License
# modified: Konstantin Baev <kipruss@etersoft.ru>
# GNU Public License
# Build kernel module in installed system
# in kernel build dir you can have gcc_version.inc file with export GCC_VERSION=x.xx
. ./functions.sh
if [ $TESTBUILD -ne 1 ] ; then
if [ $DKMSBUILD -eq 1 ] ; then
detect_host_kernel
echo
echo "Building for $KERNELVERSION Linux kernel with dkms"
echo "Building $MODULENAME $MODULEVERSION for $KERNELVERSION Linux kernel with dkms"
dkms_build_module
else
detect_host_kernel
echo
echo "Building for $KERNELVERSION Linux kernel (headers in $KERNSRC)"
echo "Building $MODULENAME $MODULEVERSION for $KERNELVERSION Linux kernel (headers in $KERNSRC)"
compile_module
install_module
fi
else
echo
echo "====================================================================="
echo "Check build etercifs module for all founded kernels"
echo "Check build etercifs module for all found kernels"
BUILTLIST=
for LM in `ls /lib/modules` ; do
KERNSRC=`readlink /lib/modules/$LM/build`
......
......@@ -9,7 +9,7 @@
#
# description: linux cifs module \
# Multiplatform init script \
# 2006, 2007, 2008, 2009 Public domain
# 2006, 2007, 2008, 2009, 2010 Public domain
#
# modulename: etercifs
#
......@@ -220,7 +220,7 @@ show_loaded_module_version()
status()
{
local PRECOMP
echo "CIFS module status:"
echo "CIFS kernel module status:"
if is_moduled ; then
get_module_version
show_module_version
......
#!/bin/bash
# 2009 (c) Etersoft http://etersoft.ru
# 2009-2010 (c) Etersoft http://etersoft.ru
# Author: Konstantin Baev <kipruss@etersoft.ru>
# GNU Public License
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment