summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/aoeboot.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/aoeboot.c b/src/usr/aoeboot.c
index 91b80e34d..1ed4ce49f 100644
--- a/src/usr/aoeboot.c
+++ b/src/usr/aoeboot.c
@@ -1,6 +1,7 @@
#include <stdint.h>
#include <string.h>
#include <stdio.h>
+#include <byteswap.h>
#include <gpxe/aoe.h>
#include <gpxe/ata.h>
#include <gpxe/netdevice.h>
@@ -77,7 +78,7 @@ int aoeboot ( const char *root_path ) {
sizeof ( boot_info.client ) );
memcpy ( boot_info.server, aoe->target,
sizeof ( boot_info.server ) );
- boot_info.shelf = aoe->major;
+ boot_info.shelf = htons ( aoe->major );
boot_info.slot = aoe->minor;
copy_to_real ( 0x40, 0xf0, &boot_info, sizeof ( boot_info ) );