david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Fix endianness of "shelf" field

This commit is contained in:
Michael Brown 2007-07-31 03:48:43 +01:00
parent 79691961ba
commit dde3f99e4e
1 changed files with 2 additions and 1 deletions

View File

@ -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 ) );