diff --git a/apertis-ostree-commit.yaml b/apertis-ostree-commit.yaml
index 6a458367d084caac116c8d7568e3d73a202c3872..9ab3571cc0af54bdaad621fb5c821b70a352577f 100644
--- a/apertis-ostree-commit.yaml
+++ b/apertis-ostree-commit.yaml
@@ -9,12 +9,15 @@
 {{ $image := or .image (printf "apertis-ostree-%s-%s-%s" $suite  $type $architecture) }}
 {{ $ostree := or .ostree "repo" }}
 {{ $message := or .message "Update" }}
+{{- $included_recipe := or .included_recipe "false"}}
 
 architecture: {{ $architecture }}
 
 actions:
+{{- if ne $included_recipe "true" }}
   - action: unpack
     file: {{ $ospack }}.tar.gz
+{{- end }}
 
   - action: overlay
     description: "Install ostree feature"
diff --git a/apertis-sample-ostree-uboot.yaml b/apertis-sample-ostree-uboot.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..ea25c4fae8c2e406a81ee8074847480b1eb69c87
--- /dev/null
+++ b/apertis-sample-ostree-uboot.yaml
@@ -0,0 +1,52 @@
+{{- $architecture := "armhf" }}
+{{- $type := "minimal" }}
+{{- $mirror := "https://repositories.apertis.org/apertis/" }}
+{{- $suite := "18.12" }}
+{{- $timestamp := "00000000.0" }}
+{{- $image := (printf "apertis-sample-%s-%s-%s_%s" $suite  $type $architecture $timestamp) }}
+
+{{ $board := "uboot" }}
+{{ $osname := "apertis" }}
+{{ $branch := (printf "%s/%s/%s-%s/%s" $osname $suite $architecture $board $type) }}
+{{ $ostree := "repo" }}
+{{ $repourl := (printf "${ARTIFACTDIR}/%s" $ostree) }}
+
+architecture: {{ $architecture }}
+
+actions:
+  - action: run
+    description: Create local OSTree repository
+    chroot: false
+    command: ostree init --mode archive --repo=${ARTIFACTDIR}/{{ $ostree }}
+
+  - action: recipe
+    description: Create ospack for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ospack-{{ $type }}.yaml
+    variables:
+      type: {{ $type }}
+      mirror: {{ $mirror }}
+      suite: {{ $suite }}
+      timestamp: {{ $timestamp }}
+
+  - action: recipe
+    description: OSTree commit for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ostree-commit.yaml
+    variables:
+      type: {{ $type }}
+      suite: {{ $suite }}
+      timestamp: {{ $timestamp }}
+      board: {{ $board }}
+      branch: {{ $branch }}
+      ostree: {{ $ostree }}
+
+  - action: recipe
+    description: Create image {{ $image }} for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ostree-image-uboot.yaml
+    variables:
+      type: {{ $type }}
+      suite: {{ $suite }}
+      image: {{ $image }}
+      board: {{ $board }}
+      repourl: {{ $repourl }}
+      branch: {{ $branch }}
+      ostree: {{ $ostree }}