Browse Source

Merge upstream version 11

David Martínez Moreno 17 years ago
parent
commit
339ff595bd
4 changed files with 32 additions and 10 deletions
  1. 4 1
      NEWS
  2. 17 8
      README
  3. 1 1
      dat.h
  4. 10 0
      makefile

+ 4 - 1
NEWS

@@ -1,5 +1,8 @@
 -*- change-log -*-
 -*- change-log -*-
-
+2006-09-21 "Adam J. Richter" <adam@yggdrasil.com>
+	add install target for makefile
+	vblade-11
+	
 2005-12-06 Ed L. Cashin <ecashin@coraid.com>
 2005-12-06 Ed L. Cashin <ecashin@coraid.com>
 	fix u64 configuration on FreeBSD
 	fix u64 configuration on FreeBSD
 	release vblade-10
 	release vblade-10

+ 17 - 8
README

@@ -1,17 +1,12 @@
-This is a beta release of vblade, the virtual EtherDrive (R) blade.
-The vblade is a program that makes a seekable file available over an
-ethernet local area network (LAN) via the ATA over Ethernet (AoE)
-protocol.
+The vblade is the virtual EtherDrive (R) blade, a program that makes a
+seekable file available over an ethernet local area network (LAN) via
+the ATA over Ethernet (AoE) protocol.
 
 
 The seekable file is typically a block device like /dev/md0 but even
 The seekable file is typically a block device like /dev/md0 but even
 regular files will work.  When vblade exports the block storage over
 regular files will work.  When vblade exports the block storage over
 AoE it becomes a storage target.  Another host on the same LAN can
 AoE it becomes a storage target.  Another host on the same LAN can
 access the storage if it has a compatible aoe kernel driver.
 access the storage if it has a compatible aoe kernel driver.
 
 
-The Linux aoe driver for the 2.6 kernel is compatible if you use
-aoe-2.6-7 or newer.  You can use older aoe drivers but you will only
-be able to see one vblade per MAC address.
-
 The following command should build the vblade program on a Linux-based
 The following command should build the vblade program on a Linux-based
 system:
 system:
 
 
@@ -79,3 +74,17 @@ another host on the LAN.
   hooray
   hooray
 
 
 Remember: be as careful with these devices as you would with /dev/hda!
 Remember: be as careful with these devices as you would with /dev/hda!
+
+AoE Initiator Compatibility
+---------------------------
+
+  The Linux aoe driver for the 2.6 kernel is compatible if you use
+  aoe-2.6-7 or newer.  You can use older aoe drivers but you will only
+  be able to see one vblade per MAC address.
+
+Kvblade
+-------
+
+  While vblade runs as a userland process (like "ls" or "vi"), there
+  is another program that runs inside the kernel.  It is called
+  kvblade.  It is alpha software.

+ 1 - 1
dat.h

@@ -6,7 +6,7 @@
  */
  */
 
 
 enum {
 enum {
-	VBLADE_VERSION		= 10,
+	VBLADE_VERSION		= 11,
 
 
 	// Firmware version
 	// Firmware version
 	FWV			= 0x4000 + VBLADE_VERSION,
 	FWV			= 0x4000 + VBLADE_VERSION,

+ 10 - 0
makefile

@@ -3,6 +3,11 @@
 # see README for others
 # see README for others
 PLATFORM=linux
 PLATFORM=linux
 
 
+prefix = /usr
+sbindir = ${prefix}/sbin
+sharedir = ${prefix}/share
+mandir = ${sharedir}/man
+
 O=aoe.o ${PLATFORM}.o ata.o
 O=aoe.o ${PLATFORM}.o ata.o
 CFLAGS += -Wall -g -O2
 CFLAGS += -Wall -g -O2
 CC = gcc
 CC = gcc
@@ -28,3 +33,8 @@ config.h : config/config.h.in makefile
 
 
 clean :
 clean :
 	rm -f $O vblade
 	rm -f $O vblade
+
+install : vblade vbladed
+	install vblade ${sbindir}/
+	install vbladed ${sbindir}/
+	install vblade.8 ${mandir}/man8/