Port details |
- aoe FreeBSD driver for ATA over Ethernet (AoE)
- 1.2.0_5 net =2 1.2.0_5Version of this port present on the latest quarterly branch.
- IGNORE: is marked as broken on FreeBSD 14.0: crashes dereferencing vnet_entry_ifnet
- There is no maintainer for this port.
- Any concerns regarding this port should be directed to the FreeBSD Ports mailing list via ports@FreeBSD.org
- Port Added: 2010-09-14 13:31:26
- Last Update: 2024-01-03 01:00:26
- Commit Hash: 823c8fa
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: kld
- License: BSD2CLAUSE
- WWW:
- https://web.archive.org/web/20120420082041/http://www.coraid.com/support/freebsd/
- Description:
- FreeBSD driver for ATA over Ethernet (AoE)
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- To install the port:
- cd /usr/ports/net/aoe/ && make install clean
- We doubt a package is available for this port because we see it marked as as:
-
Packages are normally not provided for ports that are marked as above.
- To add the package, run one of these commands:
- pkg install net/aoe
- pkg install aoe
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: aoe
- Flavors: there is no flavor information for this port.
- distinfo:
- SHA256 (aoe-freebsd-1.2.0.tar.gz) = 4fcfde7c4b758dfaba36b28e94df7c74eb7609cf26261720475c5479a8323a24
SIZE (aoe-freebsd-1.2.0.tar.gz) = 16529
Packages (timestamps in pop-ups are UTC):
- This port has no dependencies.
- There are no ports dependent upon this port
Configuration Options:
- No options to configure
- Options name:
- net_aoe
- USES:
- kmod uidfix
- pkg-message:
- For install:
- Please remember to reinstall this port after kernel source update. Using AoE
devices on boot is a little tricky because the network must be up before the
system can access an AoE device. The current rc boot method for automounting
filesystems will not work with AoE devices; vinum and mount -a are both run
before bringing up the network.
In order to use AoE devices on boot a few rc.conf variables have been defined
that permit the boot script (/etc/rc.d/aoe) to initialize systems using AoE
devices after the network is up. They are as follows:
aoe_enable Set to "Yes" to enable the aoe startup script.
aoe_iflist A space separated string of interfaces valid for AoE.
aoe_wc Set to "1" to enable write cache on AoE device.
aoe_mounts A space seperated string of AoE device nodes to be mounted.
(An entry for each needs to be in /etc/fstab as well with the
"noauto" option.)
For example, the following added to /etc/rc.conf:
aoe_enable="Yes"
aoe_iflist="em0 em1"
aoe_wc="1"
aoe_mounts="/dev/aoed0s1a /dev/aoed1s1a"
and the following added to /etc/fstab:
# Device Mountpoint FStype Options Dump Pass#
/dev/aoed0s1a /mnt/a ufs rw,noauto 0 0
/dev/aoed1s1a /mnt/b ufs rw,noauto 0 0
will automatically start the AoE driver and mount the /mnt/a and /mnt/b
"blades". See aoe(4) and http://www.coraid.com/support/freebsd/usingaoe.html
for more information.
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.2.0_5 03 Jan 2024 01:00:26 |
Mark Johnston (markj) |
net/aoe: Fix error handling for a copyout() call
This will soon be required by the base system.
PR: 275986
Approved by: antoine |
1.2.0_4 30 Oct 2023 22:37:04 |
Rodrigo Osorio (rodrigo) |
net/aoe: Update WWW
Homepage link is dead (HTTP protocol error)
use webarchive latest version instead |
1.2.0_4 10 Sep 2023 16:12:56 |
Robert Clausecker (fuz) Author: Chad Fraleigh |
net/aoe: fix build on non-x86
While we are at it:
- remove BROKEN_... lines for FreeBSD versions out of support
- drop homegrown do-install in favour of USES=uidfix
- install kernel module into standard location
- attempt to fix the build on FreeBSD 13
Still doesn't work on FreeBSD 13.2. While it builds, the code now
fails at runtime, apparently when it tries to dereference vnet_entry_ifnet
in the line
IFNET_FOREACH(ifp)
in aoenet_xmitbcast.
PR: 239891 |
1.2.0_3 09 Aug 2023 13:02:39 |
Robert Clausecker (fuz) Author: Chad Fraleigh |
net/aoe: fix build on FreeBSD 12
Still broken on FreeBSD 13+, but for a different reason now:
aoenet.c:313:22: error: use of undeclared identifier 'ifnet'; did you mean
'ifunit'?
IFNET_FOREACH(ifp, &ifnet, if_link) {
^~~~~
ifunit
PR: 239891
MFH: 2023Q3 |
1.2.0_2 16 Jul 2023 11:24:43 |
Muhammad Moinur Rahman (bofh) |
net/aoe: Mark DEPRECATED
- Broken on all supported releases
- Set EXPIRATION_DATE to 2023-08-15 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.2.0_2 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.2.0_2 20 Jul 2022 14:22:37 |
Tobias C. Berner (tcberner) |
net: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Aaron Straup Cope <ascope@cpan.org>
* Aaron Zauner <az_mail@gmx.at>
* Adam Jette <jettea46@yahoo.com>
* Adam Weinberger <adamw@FreeBSD.org>
* Alan Eldridge <alane@geeksrus.net>
* Alex Bakhtin <Alex.Bakhtin@gmail.com>
* Alex Deiter <Alex.Deiter@Gmail.COM>
* Alex Dupre <ale@FreeBSD.org>
* Alex Dupre <sysadmin@alexdupre.com> (Only the first 15 lines of the commit message are shown above ) |
1.2.0_2 06 Dec 2021 12:36:27 |
Rene Ladan (rene) |
all: return fjoe's ports to the pool
fjoe's ports bit got safekept. |
1.2.0_2 06 Apr 2021 14:31:13 |
Mathieu Arnold (mat) |
all: Remove all other $FreeBSD keywords. |
1.2.0_2 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.2.0_2 25 Jan 2021 07:12:14 |
antoine |
Mark BROKEN on FreeBSD 14
Reported by: pkg-fallout
MFH: 2021Q1 |
1.2.0_2 14 Aug 2019 08:48:51 |
mat |
Convert to UCL & cleanup pkg-message (categories n)
(and missed 3 missed files from previous categories.) |
1.2.0_2 06 Apr 2019 06:08:05 |
antoine |
Mark BROKEN on FreeBSD 12 and 13
Reported by: pkg-fallout
MFH: 2019Q2 |
1.2.0_2 11 Dec 2018 17:03:52 |
linimon |
These ports now build on powerpc64.
Approved by: portmgr (tier-2 blanket) |
1.2.0_2 30 Nov 2017 06:13:35 |
linimon |
For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.
This is part two of a multipart commit to bring armv7 ports to parity
with armv6.
Approved by: portmgr (tier-2 blanket)
Obtained from: lonesome.com -exp run |
1.2.0_2 18 Oct 2017 06:26:08 |
fjoe |
Unbreak on CURRENT |
1.2.0_2 27 May 2017 15:33:43 |
linimon |
Mark some ports failing on armv6: implicit declaration of function
'cp15_pmccntr_get' is invalid in C99.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
1.2.0_2 22 May 2017 16:04:19 |
linimon |
Mark some ports failing on power64. In cases where the error message
was a stub, provide a real one.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket)
Reported by: swills |
1.2.0_2 16 Nov 2016 00:35:05 |
linimon |
Mark as broken on various tier-2 archs.
While here, pet portlint.
Approved by: portmgr (tier-2 blanket) |
1.2.0_2 19 May 2016 11:09:14 |
amdmi3 |
- Fix trailing whitespace in pkg-messages
Approved by: portmgr blanket |
1.2.0_2 02 Oct 2014 17:32:34 |
bapt |
Remove what is already set by USES=kmod
Submitted by: rene |
1.2.0_2 02 Oct 2014 16:23:32 |
glebius |
Fix build on head.
Approved by: bapt |
1.2.0_1 02 Oct 2014 15:45:42 |
bapt |
Make sure the package respect SRC_BASE
Use the kmod framework
Cleanup the plist
Reported by: glebius |
1.2.0 13 Sep 2014 19:54:53 |
fjoe |
Unbreak on -CURRENT. |
1.2.0 31 Aug 2014 20:30:39 |
fjoe |
Fix manpage handling. |
1.2.0 31 Aug 2014 19:54:43 |
fjoe |
- Staging support.
- Take maintainership back. |
1.2.0 31 Aug 2014 18:35:40 |
fjoe |
Unbreak on -CURRENT. |
1.2.0 31 Aug 2014 18:30:44 |
fjoe |
Unbreak on -CURRENT. |
1.2.0 24 Jul 2014 15:57:24 |
bapt |
Reset maintainership for ports not staged with no pending PR
With hat: portmgr |
1.2.0 05 Jun 2014 10:21:04 |
fjoe |
Unbreak on FreeBSD 11 (32-bit ifi_mtu). |
1.2.0 09 Feb 2014 05:53:16 |
fjoe |
Unbreak on -CURRENT: M_DONTWAIT -> M_NOWAIT. |
1.2.0 18 Nov 2013 14:44:50 |
fjoe |
Unbreak build on FreeBSD 10 (new mbuf API). |
1.2.0 20 Sep 2013 22:10:25 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net) |
1.2.0 20 Sep 2013 12:54:55 |
bdrewery |
SSP support has been added to ports with WITH_SSP for i386 and amd64
on FreeBSD 10, and amd64 on earlier versions.
SSP_UNSAFE is added to disable in a port if it fails to build, but
this should only be used in rare circumstances such as kernel modules.
Otherwise, the port may just be failing due to lack of respecting
LDFLAGS.
On FreeBSD 10, this uses an ldscript in /usr/lib/libc.so to pull in
libssp_nonshared.a to address issues linking on i386 [1].
On earlier FreeBSD versions the WITH_SSP knob will add -lssp_nonshared
to LDFLAGS on i386. This is not needed on amd64. However, several hundred
ports do not currently respect LDFLAGS, so this support is disabled currently
as it causes build failures if a dependency is looking for the stack_chk (Only the first 15 lines of the commit message are shown above ) |
1.2.0 14 Jan 2012 08:57:23 |
dougb |
In the rc.d scripts, change assignments to rcvar to use the
literal name_enable wherever possible, and ${name}_enable
when it's not, to prepare for the demise of set_rcvar().
In cases where I had to hand-edit unusual instances also
modify formatting slightly to be more uniform (and in
some cases, correct). This includes adding some $FreeBSD$
tags, and most importantly moving rcvar= to right after
name= so it's clear that one is derived from the other. |
1.2.0 05 Jul 2011 07:43:28 |
danfe |
Kill EOL whitespace. |
1.2.0 20 Mar 2011 12:54:45 |
miwi |
- Get Rid MD5 support |
1.2.0 14 Sep 2010 13:30:54 |
fjoe |
New port: FreeBSD driver for ATA over Ethernet (AoE)
Port author is Stacey D. Son. Two additional patches are added:
- a patch to fix build on FreeBSD 7 and later [1]
- a patch to fix device detection >2TB [2]
Submitted by: pluknet [1], fjoe [2]
Tested by: George Mamalakis |