Merge "clearfog: Use a custom DTS file"
diff --git a/README.md b/README.md
index 7aa5672..9bca7be 100644
--- a/README.md
+++ b/README.md
@@ -32,8 +32,11 @@
 WARNING: Buildroot is fragile.
 It is *not* safe to perform incremental builds after changing an "important" setting.
 Please check their manual for details.
-Using `ccache` might help, but a significant time is wasted in `configure` steps which are not parallelized :( as of October 2017.
-This can be hacked by patching Buildroot's top-level `Makefile`, but note that one cannot easily debug stuff afterwards:
+
+### Hack: parallel build
+
+A significant amount of time is wasted in `configure` steps which are not parallelized :( as of November 2017.
+This can be hacked by patching Buildroot's top-level `Makefile`, but note that one cannot easily debug stuff afterwards.
 
 ```diff
 diff --git a/Makefile b/Makefile
@@ -50,16 +53,19 @@
  TOPDIR := $(CURDIR)
 ```
 
+Also, we are building two different root filesystem instances (an EXT4 image and a tarball for RAUC).
+This is [also currently broken](http://lists.busybox.net/pipermail/buildroot/2017-November/206255.html), but we can work around that reasonably easily:
+
+```sh
+make -j32 target-finalize && make
+```
 
 ## Installing updates to a device
 
 Apart from the traditional way of re-flashing the SD card or the eMMC from scratch, it's also possible to use RAUC to update.
 This method preserves the U-Boot version and the U-Boot's environment.
 Apart from that, everything starting with the kernel and the DTB file and including the root FS is updated.
-
-FIXME: the system uses separate config partitions (`/cfg`), so these persistent bits are *not* preserved yet (see these
-[user](https://tree.taiga.io/project/jktjkt-czechlight/us/124?no-milestone=1)
-[stories](https://tree.taiga.io/project/jktjkt-czechlight/us/127)).
+Configuration stored in `/cfg` is brought along and preserved as well.
 
 To install an update: