Commit baf0fb4b authored by Vitaly Lipatov's avatar Vitaly Lipatov

update readme, messages and comments

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