| ... | @@ -84,3 +84,47 @@ The main idea is to have all needed files in one container - to prevent any mix | 
... | @@ -84,3 +84,47 @@ The main idea is to have all needed files in one container - to prevent any mix | 
| 
 | 
 | 
 | 
 | 
| 
 | 
 | 
 | 
 | 
| 
 | 
### version 3.0 of FRP (PLANNED DRAFT)
 | 
 | 
### version 3.0 of FRP (PLANNED DRAFT)
 | 
 | 
 | 
 | 
```
 | 
 | 
 | 
 | 
*.frp
 | 
 | 
 | 
 | 
|
 | 
 | 
 | 
 | 
|-content.xml
 | 
 | 
 | 
 | 
|-avl_3.0.x_rcxx.bin
 | 
 | 
 | 
 | 
|-xxxxx_yyy.pre.conf
 | 
 | 
 | 
 | 
|-xxxxx_yyy.post.conf
 | 
 | 
 | 
 | 
|-falcom.crt
 | 
 | 
 | 
 | 
|-customer.crt*
 | 
 | 
 | 
 | 
```
 | 
 | 
 | 
 | 
customer.crt as option
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
* example of XML
 | 
 | 
 | 
 | 
```xml
 | 
 | 
 | 
 | 
<?xml version="1.0" encoding="UTF-8"?>
 | 
 | 
 | 
 | 
<falcom-resource-package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 | 
 | 
 | 
 | 
	xsi:noNamespaceSchemaLocation="http://www.falcom-solutions.de/schemas/falcom-resource-package_v2.xsd">
 | 
 | 
 | 
 | 
	<version-info number="2" />
 | 
 | 
 | 
 | 
	<resources>
 | 
 | 
 | 
 | 
            <firmware>
 | 
 | 
 | 
 | 
                <file format="flat" sha512="f750181d026864cfdd204374cc464db8">avl_3.0.3_rc39.bin</file>
 | 
 | 
 | 
 | 
	    </firmware>
 | 
 | 
 | 
 | 
            <configuration>
 | 
 | 
 | 
 | 
                <pre>
 | 
 | 
 | 
 | 
                    <file format="conf" sha512="f750181d026864cfdd204374cc464db8">xxxxx_yyy.pre.conf</file>
 | 
 | 
 | 
 | 
		</pre>
 | 
 | 
 | 
 | 
                <post>
 | 
 | 
 | 
 | 
                    <file format="conf" sha512="f750181d026864cfdd204374cc464db8">xxxxx_yyy.post.conf</file>
 | 
 | 
 | 
 | 
		</post>
 | 
 | 
 | 
 | 
            </configuration>
 | 
 | 
 | 
 | 
	</resources>
 | 
 | 
 | 
 | 
	<devices>
 | 
 | 
 | 
 | 
		<device class="avl" type="all">
 | 
 | 
 | 
 | 
			<module type="device">
 | 
 | 
 | 
 | 
				<resource type="firmware">
 | 
 | 
 | 
 | 
					<version major="3" minor="0" micro="3" build="39"
 | 
 | 
 | 
 | 
						state="rc" />
 | 
 | 
 | 
 | 
					<file format="flat" crc="f750181d026864cfdd204374cc464db8">avl_3.0.3_rc39.bin</file>
 | 
 | 
 | 
 | 
				</resource>
 | 
 | 
 | 
 | 
			</module>
 | 
 | 
 | 
 | 
		</device>
 | 
 | 
 | 
 | 
	</devices>
 | 
 | 
 | 
 | 
</falcom-resource-package>
 | 
 | 
 | 
 | 
``` |