[rtems commit] i386/pc386: Add --ide-disable boot command line option.

Chris Johns chrisj at rtems.org
Wed May 11 03:01:29 UTC 2016


Module:    rtems
Branch:    master
Commit:    02ef5d9a05c4c3633722f52a68fa1ece4fa42922
Changeset: http://git.rtems.org/rtems/commit/?id=02ef5d9a05c4c3633722f52a68fa1ece4fa42922

Author:    Chris Johns <chrisj at rtems.org>
Date:      Sat May  7 08:16:49 2016 +1000

i386/pc386: Add --ide-disable boot command line option.

---

 c/src/lib/libbsp/i386/pc386/ide/idecfg.c | 108 ++++++++++++++++---------------
 1 file changed, 57 insertions(+), 51 deletions(-)

diff --git a/c/src/lib/libbsp/i386/pc386/ide/idecfg.c b/c/src/lib/libbsp/i386/pc386/ide/idecfg.c
index f0f5bfe..371a6ee 100644
--- a/c/src/lib/libbsp/i386/pc386/ide/idecfg.c
+++ b/c/src/lib/libbsp/i386/pc386/ide/idecfg.c
@@ -74,66 +74,72 @@ unsigned long IDE_Controller_Count;
 
 void bsp_ide_cmdline_init(void)
 {
-  bool ide1 = IDE1_DEFAULT;
-  bool ide2 = IDE2_DEFAULT;
-  const char* ide;
-
-  /*
-   * Can have:
-   *  --ide=0,1
-   */
-  ide = bsp_cmdline_arg ("--ide=");
-
-  if (ide)
-  {
-    int i;
+  const char* ide_disable;
+
+  ide_disable = bsp_cmdline_arg ("--ide-disable");
+
+  if (ide_disable == NULL) {
+    bool ide1 = IDE1_DEFAULT;
+    bool ide2 = IDE2_DEFAULT;
+    const char* ide;
+
     /*
-     * If a command line option exists remove the defaults.
+     * Can have:
+     *  --ide=0,1
      */
-    ide1 = ide2 = false;
+    ide = bsp_cmdline_arg ("--ide=");
 
-    ide += sizeof ("--ide=") - 1;
-
-    for (i = 0; i < 3; i++)
+    if (ide)
     {
-      switch (ide[i])
+      int i;
+      /*
+       * If a command line option exists remove the defaults.
+       */
+      ide1 = ide2 = false;
+
+      ide += sizeof ("--ide=") - 1;
+
+      for (i = 0; i < 3; i++)
       {
-        case '0':
-          ide1 = true;
-          break;
-        case '1':
-          ide2 = true;
-          break;
-        case '2':
-        case '3':
-        case '4':
-        case '5':
-        case '6':
-        case '7':
-        case '8':
-        case '9':
-        case ',':
-          break;
-        default:
-          break;
+        switch (ide[i])
+        {
+          case '0':
+            ide1 = true;
+            break;
+          case '1':
+            ide2 = true;
+            break;
+          case '2':
+          case '3':
+          case '4':
+          case '5':
+          case '6':
+          case '7':
+          case '8':
+          case '9':
+          case ',':
+            break;
+          default:
+            break;
+        }
       }
     }
-  }
 
-  if (ide2 && !ide1)
-    IDE_Controller_Table[0] = IDE_Controller_Table[1];
+    if (ide2 && !ide1)
+      IDE_Controller_Table[0] = IDE_Controller_Table[1];
 
-  if (ide1)
-    IDE_Controller_Count++;
-  if (ide2)
-    IDE_Controller_Count++;
+    if (ide1)
+      IDE_Controller_Count++;
+    if (ide2)
+      IDE_Controller_Count++;
 
-  /*
-   * Allow the user to get the initialise to print probing
-   * type information.
-   */
-  ide = bsp_cmdline_arg ("--ide-show");
+    /*
+     * Allow the user to get the initialise to print probing
+     * type information.
+     */
+    ide = bsp_cmdline_arg ("--ide-show");
 
-  if (ide)
-    pc386_ide_show = true;
+    if (ide)
+      pc386_ide_show = true;
+  }
 }



More information about the vc mailing list