From 3b57ae23e0891e44d5b648575b80cbad4fc10405 Mon Sep 17 00:00:00 2001 From: Manish V Badarkhe Date: Thu, 18 Apr 2024 10:13:36 +0100 Subject: [PATCH] fix(docs): typo in the romlib design There's a typo in the romlib design document when referring to the generator script. It should be romlib_generator.py instead of romlib_generate.py so fixed this typo. Change-Id: I6db7ee66b13c2b0b9d8511da7e0d1b058366281b Signed-off-by: Manish V Badarkhe --- docs/components/romlib-design.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/components/romlib-design.rst b/docs/components/romlib-design.rst index d34b3cc58..62c173ac1 100644 --- a/docs/components/romlib-design.rst +++ b/docs/components/romlib-design.rst @@ -74,10 +74,10 @@ global variables defined by the functions inside "library at ROM". Script ~~~~~~ -There is a ``romlib_generate.py`` Python script that generates the necessary +There is a ``romlib_generator.py`` Python script that generates the necessary files for the "library at ROM" to work. It implements multiple functions: -1. ``romlib_generate.py gentbl [args]`` - Generates the jump table by parsing +1. ``romlib_generator.py gentbl [args]`` - Generates the jump table by parsing the index file. 2. ``romlib_generator.py genvar [args]`` - Generates the jump table global @@ -93,10 +93,10 @@ files for the "library at ROM" to work. It implements multiple functions: generate a dependency file of the included index files which can be directly used in makefiles. -Each ``romlib_generate.py`` function has its own manual which is accessible by +Each ``romlib_generator.py`` function has its own manual which is accessible by runing ``romlib_generator.py [function] --help``. -``romlib_generate.py`` requires Python 3 environment. +``romlib_generator.py`` requires Python 3 environment. Patching of functions in library at ROM