New '-bios' option, used to select an alternate BIOS image from bios_dir.
[qemu] / linux-user / linuxload.c
index 2d20c00..0efbb76 100644 (file)
@@ -1,4 +1,4 @@
-/* Code for loading Linux executables.  Mostly linux kenrel code.  */
+/* Code for loading Linux executables.  Mostly linux kernel code.  */
 
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -140,7 +140,7 @@ target_ulong loader_build_argptr(int envc, int argc, target_ulong sp,
     return sp;
 }
 
-int loader_exec(const char * filename, char ** argv, char ** envp, 
+int loader_exec(const char * filename, char ** argv, char ** envp,
              struct target_pt_regs * regs, struct image_info *infop)
 {
     struct linux_binprm bprm;
@@ -182,7 +182,7 @@ int loader_exec(const char * filename, char ** argv, char ** envp,
             return -1;
         }
     }
-    
+
     if(retval>=0) {
         /* success.  Initialize important registers */
         do_init_thread(regs, infop);