[Concept,05/24] Update Claude instructions for uman

Message ID 20260103011908.149445-6-sjg@u-boot.org
State New
Headers
Series Malloc debugging and test/py improvements |

Commit Message

Simon Glass Jan. 3, 2026, 1:18 a.m. UTC
  From: Simon Glass <simon.glass@canonical.com>

Suggest using the new uman tool.

Signed-off-by: Simon Glass <simon.glass@canonical.com>
---

 CLAUDE.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
  

Patch

diff --git a/CLAUDE.md b/CLAUDE.md
index d9e0245cdee..aaec9cc031d 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -6,11 +6,11 @@  This file contains information about building U-Boot for use with Claude Code.
 
 ### Using uman (Recommended)
 
-To build U-Boot for sandbox testing, use the `uman` command:
+To build U-Boot for sandbox testing, use the `um` command:
 
 ```bash
 # Build for sandbox without LTO (um is a symlink to uman)
-um -B sandbox build
+um build sandbox [flags]
 
 # The -l flag can be used to enable LTO
 # The build is silent unless there are warnings or errors
@@ -40,17 +40,17 @@  There are aliases in ~/bin/git-alias which you can use.
 To run a sandbox test:
 
 ```bash
-rtv <test_name>
+um test <test_name>
 # For example: rtv dm_test_video_box
-# which translates to: /tmp/b/sandbox/u-boot -v -Tf -c "ut dm video_box"
+# similar to: /tmp/b/sandbox/u-boot -v -Tf -c "ut dm video_box"
 # test output is silenced unless -v is given
 ```
 
 To run using the Python suite:
 
 ```bash
-pyt <test_name>
-# alias for: test/py/test.py -B sandbox --build-dir /tmp/b/sandbox -k <test_name>
+um py -B sandbox <test_name>
+# similar to: test/py/test.py -B sandbox --build-dir /tmp/b/sandbox -k <test_name>
 ```
 
 ## Notes