docs: Update getting started doc with the new app install/run flow

Change-Id: Ied5e9108b255d66ceb10a64fa93959cb28dbf354
diff --git a/GettingStarted.md b/GettingStarted.md
index 7122ce1..0ac2ac0 100644
--- a/GettingStarted.md
+++ b/GettingStarted.md
@@ -291,14 +291,16 @@
 starts, and you should see the secured core and SMC booted
 
 ```bash
-10:40:14.6784 [INFO] uart1: [output] init_kernel()
-10:40:14.6807 [INFO] uart1: [output] Init local IRQ
-10:40:14.6831 [INFO] uart1: [output] Bootstrapping kernel
-10:40:14.6842 [INFO] uart1: [output] Initialing PLIC...
-10:40:14.7028 [INFO] uart0: [output] OpenTitan initialisation complete. Entering main loop
-10:40:14.7066 [INFO] uart0: [output] Woo Tock!
-10:40:14.7346 [INFO] uart0: [output] Hello Tock World
-10:40:15.8820 [INFO] uart1: [output] Booting all finished, dropped to user space
+10:11:43.1993 [INFO] uart5: init_kernel()
+10:11:43.2012 [INFO] uart5: Init local IRQ
+10:11:43.2018 [INFO] uart5: Bootstrapping kernel
+10:11:43.2053 [INFO] uart5: Initialing PLIC...
+10:11:43.2830 [INFO] uart5: Booting all finished, dropped to user space
+10:11:43.2978 [INFO] uart5: kata_os_rootserver::Bootinfo: 130550 empty slots 1 nodes 56 untyped 131072 cnode slots
+10:11:43.3008 [INFO] uart5: kata_os_rootserver::Model: 3750 objects 32 irqs 0 untypeds 2 asids
+10:11:43.3123 [INFO] uart5: kata_os_rootserver::capDL spec: 0.33 Mbytes
+10:11:43.3142 [INFO] uart5: kata_os_rootserver::CAmkES components: 1.02 Mbytes
+10:11:43.3191 [INFO] uart5: kata_os_rootserver::Rootserver executable: 0.40 Mbytes
 ```
 
 At this point, you should be able to connect to the SMC debug console.
@@ -344,14 +346,34 @@
 
 You can launch the ML workload execution by communicating through the debug console
 
+Check existing builtin applications
+
 ```bash
-KATA> test_mlexecute
+KATA> builtins
 ```
 
-and you should see
+Install the embedded ML model app; for example,
 
 ```bash
-15:17:59.9864 [INFO] uart1: [output] KATA> test_mlexecute
+KATA> install mobilenet_v1_emitc_static.model
+```
+
+and you should see model installed with a bundle ID issued.
+
+```bash
+KATA> Bundle "fake.26" installed
+```
+
+You can then launch the ML job with `test_mlexecute <bundle ID> <model name>`
+
+```bash
+KATA> test_mlexecute fake.26 mobilenet_v1_emitc_static.model
+```
+
+with the Renode console log printed as
+
+```bash
+15:17:59.9864 [INFO] uart5: kata_ml_coordinator::Load successful.
 ...
 15:18:02.6868 [INFO] cpu2: simprint: "main returned: ", 0 (0x0)
 
@@ -359,6 +381,7 @@
 
 ## More Information
 
-For more available Shodan build targets, please see [Build target lists](./BuildTargetsExplained.md).
+For more available Shodan build targets, please see [Build target lists](./BuildTargetsExplained.md),
+or use the in-project command of `hmm` and `hmm <target name>`.
 
 Also, [Information on how to use repo](https://go/repo)