From ddc358dc6c93090c854491f22786e8a2c057b7c3 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Fri, 2 Jan 2026 12:25:20 -0700 Subject: [PATCH] Update Claude instructions for uman Suggest using the new uman tool. Signed-off-by: Simon Glass --- CLAUDE.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 +um test # 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 -# alias for: test/py/test.py -B sandbox --build-dir /tmp/b/sandbox -k +um py -B sandbox +# similar to: test/py/test.py -B sandbox --build-dir /tmp/b/sandbox -k ``` ## Notes