feat: standard vga support (mode switching, framebuffer remapping)
[lunaix-os.git] / lunaix-os / kernel / fs / probe_boot.c
index 4f38c6ac90cc2d93c250c7171db3e708de5e8e19..2ddc9b1317176f1cfbeda18ae8ac26411fb2934a 100644 (file)
@@ -23,10 +23,10 @@ probe_boot_medium()
         int errno =
           pos->ops.read(pos, (void*)volp, ISO9660_READ_OFF, ISO9660_BLKSZ);
         if (errno < 0) {
-            kprintf(KWARN "can not probe %x:%s (%d)\n",
-                    pos->dev_id,
-                    pos->name.value,
-                    errno);
+            kprintf(KINFO "failed %xh:%xh, /dev/%s\n",
+                    pos->ident.fn_grp,
+                    pos->ident.unique,
+                    pos->name.value);
             pos = NULL;
             goto done;
         }
@@ -36,8 +36,9 @@ probe_boot_medium()
         }
 
         if (*(u32_t*)volp->sys_id == LUNAIX_ID) {
-            kprintf(KINFO "[%x:%s] %s\n",
-                    pos->dev_id,
+            kprintf(KINFO "%xh:%xh, /dev/%s, %s\n",
+                    pos->ident.fn_grp,
+                    pos->ident.unique,
                     pos->name.value,
                     (char*)volp->vol_id);
             break;