summaryrefslogtreecommitdiffstats
path: root/src/arch/i386/transitions
diff options
context:
space:
mode:
authorMichael Brown2005-04-10 20:30:34 +0200
committerMichael Brown2005-04-10 20:30:34 +0200
commit87508aa0b2e0fea5d4dea8d732150bd2fdbbb9f8 (patch)
tree88771e2c14fad3a6a7c63e74088c0ba266263ca5 /src/arch/i386/transitions
parentUse librm_arch_initialise for librm, arch_initialise for others. (diff)
downloadipxe-87508aa0b2e0fea5d4dea8d732150bd2fdbbb9f8.tar.gz
ipxe-87508aa0b2e0fea5d4dea8d732150bd2fdbbb9f8.tar.xz
ipxe-87508aa0b2e0fea5d4dea8d732150bd2fdbbb9f8.zip
arch_initialise() is now sufficiently generic that we may as well just
call it initialise() and place it in main.c. :)
Diffstat (limited to 'src/arch/i386/transitions')
-rw-r--r--src/arch/i386/transitions/librm_mgmt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/i386/transitions/librm_mgmt.c b/src/arch/i386/transitions/librm_mgmt.c
index c8455cba3..f59941b2f 100644
--- a/src/arch/i386/transitions/librm_mgmt.c
+++ b/src/arch/i386/transitions/librm_mgmt.c
@@ -126,16 +126,16 @@ INIT_FN ( INIT_LIBRM, librm_init, NULL, uninstall_librm );
POST_RELOC_FN ( POST_RELOC_LIBRM, librm_post_reloc );
/*
- * Wrapper for arch_initialise() when librm is being used. We have to
+ * Wrapper for initialise() when librm is being used. We have to
* install a copy of librm to allocated base memory and return the
* pointer to this new librm's entry point via es:di.
*
*/
-void librm_arch_initialise ( struct i386_all_regs *regs ) {
+void initialise_via_librm ( struct i386_all_regs *regs ) {
char *new_librm;
/* Hand off to arch_initialise() */
- arch_initialise ( regs );
+ initialise ( regs );
/* Uninstall current librm (i.e. the one that's part of the
* original, pre-relocation Etherboot image).