]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Add empty on_root_mounted function
authorRay Strode <rstrode@redhat.com>
Thu, 21 Aug 2008 20:58:26 +0000 (16:58 -0400)
committerRay Strode <rstrode@redhat.com>
Wed, 27 Aug 2008 14:55:37 +0000 (10:55 -0400)
src/splash-plugins/spinfinity/plugin.c

index f2653d554f2d956c7279f2d6fd796fa0d8abf2e2..bf0b2abb8e7f86ba89a7ec4c64a67aad92624f5d 100644 (file)
@@ -460,6 +460,11 @@ ask_for_password (ply_boot_splash_plugin_t *plugin,
     ply_entry_draw (plugin->entry);
 }
 
+void
+on_root_mounted (ply_boot_splash_plugin_t *plugin)
+{
+}
+
 ply_boot_splash_plugin_interface_t *
 ply_boot_splash_plugin_get_interface (void)
 {
@@ -471,6 +476,7 @@ ply_boot_splash_plugin_get_interface (void)
       .update_status = update_status,
       .hide_splash_screen = hide_splash_screen,
       .ask_for_password = ask_for_password,
+      .on_root_mounted = on_root_mounted
     };
 
   return &plugin_interface;