search for: iso_imag

Displaying 8 results from an estimated 8 matches for "iso_imag".

Did you mean: iso_image
2009 Apr 24
1
vesamenu.c32 broken? blame F10?
Hello, vesamenu.c32 from syslinux-3.75.tar.bz2 is broken in my tests with: - qemu 0.9.1 -cdrom iso_image - qemu 0.9.1 -cdrom iso_image -std-vga - virtualbox 2.2.0 (Sun version) It blocks right after showing the copyright notice. I've since compiled the following versions in my machine, running Fedora 10: - syslinux-3.63 - syslinux-3.72 - syslinux-3.73 - syslinux-3.75-143-g080bf56 I did a `make...
2006 Sep 13
0
[patch] add iso9660 detection to fstype
...type.c 2006-09-14 00:10:01.000000000 +0200 @@ -31,6 +31,7 @@ #include "xfs_sb.h" #include "luks_fs.h" #include "lvm2_sb.h" +#include "iso9660_sb.h" /* * Slightly cleaned up version of jfs_superblock to @@ -221,6 +222,21 @@ return 0; } +static int iso_image(const void *buf, unsigned long long *blocks) +{ + const struct iso_volume_descriptor *isovd = + (const struct iso_volume_descriptor *)buf; + const struct iso_hs_volume_descriptor *isohsvd = + (const struct iso_hs_volume_descriptor *)buf; + + if (!memcmp(isovd->id, ISO_MAGIC, ISO_MAGIC_L...
2013 Feb 22
6
Boot
> > http://en.wikipedia.org/wiki/SYSLINUX#List > > The original SYSLINUX, used for booting from FAT<http://en.wikipedia.org/wiki/File_Allocation_Table>and > NTFS <http://en.wikipedia.org/wiki/NTFS> filesystems (such as floppy > disks and USB drives). > I have a question generated from the above wikipedia explanation. Is it possible for the latest version of
2012 Feb 05
2
Isolinux question: booting multiple ISOs from one CD
Hi everyone. I need a hint. I have a running pxelinux system with a lot of submenues in production usage. Nearly the same structure I have in production usage from USB-sticks (syslinux and memdisk). No I want to have the same structure also bootable form a CD. Unfotunally my main applications are only available as .iso -files. no chance to get them bootable with eg vmlinuz. The iso contains
2010 Apr 03
1
[PATCH] btrfs support
...name[12]; @@ -496,6 +509,7 @@ static struct imagetype images[] = { {64, "reiserfs", reiserfs_image}, {64, "reiser4", reiser4_image}, {64, "gfs2", gfs2_image}, + {64, "btrfs", btrfs_image}, {32, "jfs", jfs_image}, {32, "iso9660", iso_image}, {0, "luks", luks_image},
2011 Aug 03
3
Problems booting WinPE ISO
I have set up a RHEL 5.7 PXE server and trying to get a WinPE ISO to work. Currently PXE seems to handle the image properly but the process stops after Loading boot sector... booting... Full list of what is going on. Ramdisk at 0x72b9c00, length 0x0a680000 command line: iso initrd=../images/windows/winpe_x86.iso BOOT_IMAGE=../memdisk Disk is hard disk 0, 170496 K C/H/S = 340992/1/1 Total size
2007 Aug 15
0
[git patch] fstype support + minor stuff
...[12]; @@ -328,6 +343,7 @@ static struct imagetype images[] = { {8, "reiserfs", reiserfs_image}, {64, "reiserfs", reiserfs_image}, {64, "reiser4", reiser4_image}, + {64, "gfs2", gfs2_image}, {32, "jfs", jfs_image}, {32, "iso9660", iso_image}, {0, "luks", luks_image}, diff --git a/usr/kinit/fstype/gfs2_fs.h b/usr/kinit/fstype/gfs2_fs.h new file mode 100644 index 0000000..028e0c9 --- /dev/null +++ b/usr/kinit/fstype/gfs2_fs.h @@ -0,0 +1,56 @@ +#ifndef __GFS2_FS_H +#define __GFS2_FS_H + +#define GFS2_MAGIC 0x011...
2012 Sep 16
12
Setting up XEN domU causes RAID5 to fail?
...d a RAID5 images. I got linux (Funtoo) installed on the root with my kernel on the boot. XEN is installed as well and setup and running. I created a xen_images folder and a iso _images folder both in the /images folder. I downloaded the ISO''s for the OS''s I need to install into iso_images. I then created several .img files in the xen_images folder using dd. For example (dd if=/dev/zero of=/images/xen_images/Win7x86_Base.img bs=1 count=1 seek=50G) I then started my first xen domU booting from the Win7 ISO I had and started the install. I got to the point where it formatted th...