Changes between Version 12 and Version 13 of UDF
- Timestamp:
- 2012-08-26T09:41:56Z (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UDF
v12 v13 11 11 12 12 === 3 How to test === 13 You need Bazaar (version control system) to download sources. 13 14 14 15 ==== 3.1 Download sources from my branch ==== … … 17 18 }}} 18 19 19 ==== 3.2 Compile sources ==== 20 ==== 3.2 Build cross-platform compiler ==== 21 Building IA32 compiler (GCC) 22 You should to install all requirements (list will be provided by toolchain.sh). 23 {{{ 24 cd helenos/tools 25 sudo ./toolchain.sh ia32 26 }}} 27 28 ==== 3.3 Compile sources ==== 20 29 {{{ 21 30 cd helenos … … 23 32 }}} 24 33 25 ==== 3. 3 Create UDF disk image under Linux====34 ==== 3.4 Create UDF disk image under Linux (Optional) ==== 26 35 To create UDF image under Linux you need to install package with [http://sourceforge.net/projects/linux-udf/ UDF utilities]. For example in Arch it's [http://aur.archlinux.org/packages.php?K=udftools udftools]. The package should contain the `mkudffs` tool. 27 36 … … 38 47 }}} 39 48 40 ==== 3. 4 Mount udf disk image under Linux====41 You can mount the UDF image (from step 3. 3) under your Linux host and copy several files into it.49 ==== 3.5 Mount udf disk image under Linux (Optional) ==== 50 You can mount the UDF image (from step 3.4) under your Linux host and copy several files into it. 42 51 {{{ 43 52 mount -o loop -t udf ./udf.img /mnt/udf-mount-point … … 46 55 where `udf.img` is the image from step 3.3 47 56 48 ==== 3. 5 Boot HelenOS with userdisk image ====57 ==== 3.6 Boot HelenOS with UDF disk image ==== 49 58 To boot HelenOS run QEMU: 50 59 {{{ … … 52 61 }}} 53 62 54 `udf.img` is the UDF disk image 63 `udf.img` is the UDF disk image (from step 3.4 or existing dvd.iso for example) 55 64 56 ==== 3. 6Mount user disk image under HelenOS ====65 ==== 3.7 Mount user disk image under HelenOS ==== 57 66 In HelenOS run a batch script to run UDF server, ATA server and mount the first ATA disk as UDF. 58 67