Home | History | Annotate | Download | only in memdisk

Lines Matching refs:bvd

29     /* BVD starts at sector 17. */
30 struct edd4_bvd *bvd = (struct edd4_bvd *)(image + 17 * 2048);
32 printf("bvd.boot_rec_ind: 0x%02x\n", bvd->boot_rec_ind);
33 printf("bvd.iso9660_id: %c%c%c%c%c\n", bvd->iso9660_id[0],
34 bvd->iso9660_id[1], bvd->iso9660_id[2], bvd->iso9660_id[3],
35 bvd->iso9660_id[4]);
36 printf("bvd.ver: 0x%02x\n", bvd->ver);
37 printf("bvd.eltorito: %s\n", bvd->eltorito);
38 printf("bvd.boot_cat: 0x%08x\n", bvd->boot_cat);
41 (struct edd4_bootcat *)(image + bvd->boot_cat * 2048);