Add README.md

Change-Id: Iaf4616c5e4ae67abc60ed5630ab6041db523fb85
diff --git a/boards/evkmimx8mq/demo_apps/hello_world_tflite/README.md b/boards/evkmimx8mq/demo_apps/hello_world_tflite/README.md
new file mode 100644
index 0000000..f064cac
--- /dev/null
+++ b/boards/evkmimx8mq/demo_apps/hello_world_tflite/README.md
@@ -0,0 +1,35 @@
+# Toolchain
+Get a toolchain from [ARM's developer site](https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads)
+
+Extract this toolchain somewhere convenient.
+
+# Building this demo
+```
+cd armgcc
+ARMGCC_DIR=/path/to/gcc-arm-none-eabi ./build_release.sh
+```
+
+Output files will be in the release folder. There will be an ELF file (if you want to debug), and a bin file to upload to your device.
+
+# Running the demo
+## Deploy the binary to your device
+### On your host machine:
+```
+mdt push armgcc/release/hello_world_tflite.bin
+```
+
+### On the device:
+```
+sudo cp hello_world_tflite.bin /boot
+cd /boot
+sudo ln -sf hello_world_tflite.bin m4_fw.bin
+```
+
+### On the device, in u-boot:
+```
+setenv m4enabled 1
+saveenv
+boot
+```
+
+Output from the M4 core will be visible on the second UART that enumerated when you connected your serial port via USB.
diff --git a/boards/evkmimx8mq/demo_apps/hello_world_tflite/build_log.txt b/boards/evkmimx8mq/demo_apps/hello_world_tflite/build_log.txt
deleted file mode 100644
index 33edf65..0000000
--- a/boards/evkmimx8mq/demo_apps/hello_world_tflite/build_log.txt
+++ /dev/null
@@ -1 +0,0 @@
-make: *** No targets specified and no makefile found.  Stop.
diff --git a/boards/evkmimx8mq/demo_apps/hello_world_tflite/readme.txt b/boards/evkmimx8mq/demo_apps/hello_world_tflite/readme.txt
deleted file mode 100644
index d2d80fd..0000000
--- a/boards/evkmimx8mq/demo_apps/hello_world_tflite/readme.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-Overview
-========
-The Hello World demo application provides a sanity check for the new SDK build environments and board bring up. The Hello
-World demo prints the "Hello World" string to the terminal using the SDK UART drivers. The purpose of this demo is to
-show how to use the UART, and to provide a simple project for debugging and further development.
-Note: Please input one character at a time. If you input too many characters each time, the receiver may overflow
-because the low level UART uses simple polling way for receiving. If you want to try inputting many characters each time,
-just define DEBUG_CONSOLE_TRANSFER_NON_BLOCKING in your project to use the advanced debug console utility.
-
-Toolchain supported
-===================
-- GCC ARM Embedded  9.2.1
-- IAR embedded Workbench  8.50.1
-
-Hardware requirements
-=====================
-- Micro USB cable
-- MIMX8MQ6-EVK  board
-- J-Link Debug Probe
-- 12V power supply
-- Personal Computer
-
-Board settings
-==============
-No special settings are required.
-
-
-
-Prepare the Demo
-================
-1.  Connect 12V power supply and J-Link Debug Probe to the board, switch SW701 to power on the board
-2.  Connect a USB cable between the host PC and the J1701 USB port on the target board.
-3.  Open a serial terminal with the following settings:
-    - 115200 baud rate
-    - 8 data bits
-    - No parity
-    - One stop bit
-    - No flow control
-4.  Download the program to the target board.
-5.  Launch the debugger in your IDE to begin running the demo.
-
-Running the demo
-================
-The log below shows the output of the hello world demo in the terminal window:
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-hello world.
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-Customization options
-=====================
-