-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSocFPGABlueprint.xml
26 lines (26 loc) · 1.6 KB
/
SocFPGABlueprint.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding = "UTF-8" ?>
<!-- Linux Distribution Blueprint XML file -->
<!-- Used by the Python script "LinuxDistro2Image.py" -->
<!-- to create a custom Linux boot image file -->
<!-- Description: -->
<!-- item "partition" describes a partition on the final image file-->
<!-- L "id" => Partition number on the final image (1 is the lowest number) -->
<!-- L "type" => Filesystem type of partition -->
<!-- L => ext[2-4], Linux, xfs, vfat, fat, none, raw, swap -->
<!-- L "size" => Partition size -->
<!-- L => <no>: Byte, <no>K: Kilobyte, <no>M: Megabyte or <no>G: Gigabyte -->
<!-- L => "*" dynamic file size => Size of the files2copy + offset -->
<!-- L "offset" => in case a dynamic size is used the offset value is added to file size-->
<!-- L "devicetree"=> compile the Linux Device (.dts) inside the partition if available (Top folder only)-->
<!-- L => Yes: Y or No: N -->
<!-- L "unzip" => Unzip a compressed file if available (Top folder only) -->
<!-- L => Yes: Y or No: N -->
<!-- L "ubootscript" => Compile the u-boot script file ("uboot.script") -->
<!-- L => Yes, for the ARMv7A (32-bit) architecture ="arm" -->
<!-- L => Yes, for the ARMv8A (64-bit) architecture ="arm64" -->
<!-- L => No ="" -->
<LinuxDistroBlueprint>
<partition id="1" type="vfat" size="*" offset="5M" devicetree="Y" unzip="N" ubootscript="arm" />
<partition id="2" type="ext3" size="*" offset="3G" devicetree="N" unzip="Y" ubootscript="" />
<partition id="3" type="RAW" size="*" offset="20M" devicetree="N" unzip="N" ubootscript="" />
</LinuxDistroBlueprint>