ppc64: Re-enable SF bit after returning from ELF binary
[openbios/afaerber.git] / packages / xcoff-loader.c
blob5213cc104de92b712936fcd2993a8d21adec423d
1 /*
3 * <xcoff-loader.c>
5 * XCOFF file loader
7 * Copyright (C) 2009 Laurent Vivier (Laurent@vivier.eu)
9 * from original XCOFF loader by Steven Noonan <steven@uplinklabs.net>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * version 2
17 #include "config.h"
18 #include "libopenbios/bindings.h"
19 #include "libopenbios/xcoff_load.h"
20 #include "packages.h"
22 DECLARE_NODE(xcoff_loader, INSTALL_OPEN, 0, "+/packages/xcoff-loader" );
24 NODE_METHODS( xcoff_loader ) = {
25 { "init-program", xcoff_init_program },
28 void xcoff_loader_init( void )
30 REGISTER_NODE( xcoff_loader );