ppc64: Re-enable SF bit after returning from ELF binary
[openbios.git] / packages / elf-loader.c
blob1665f0d0b482a7d9ffe2d5ac7eb6a3e6c0ddfb83
1 /*
3 * <elf-loader.c>
5 * ELF file loader
7 * Copyright (C) 2009 Laurent Vivier (Laurent@vivier.eu)
9 * Some parts Copyright (C) 2002, 2003, 2004 Samuel Rydh (samuel@ibrium.se)
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/elf_load.h"
20 #include "packages.h"
22 DECLARE_NODE(elf_loader, INSTALL_OPEN, 0, "+/packages/elf-loader" );
24 NODE_METHODS( elf_loader ) = {
25 { "init-program", elf_init_program },
28 void elf_loader_init( void )
30 REGISTER_NODE( elf_loader );