Lines Matching refs:to

8 setting up the board to displaying a start-up screen to loading an Operating
15 a problem it is often useful to see what U-Boot is doing in more detail than
18 U-Boot's logging feature aims to satisfy this goal for both users and
43 has a category which is intended to allow messages to be filtered according to
49 UCLASS_... - Related to a particular uclass (e.g. UCLASS_USB)
50 LOGC_ARCH - Related to architecture-specific code
51 LOGC_BOARD - Related to board-specific code
52 LOGC_CORE - Related to core driver-model support
53 LOGC_DT - Related to device tree control
59 The following options are used to enable logging at compile time:
62 CONFIG_MAX_LOG_LEVEL - Max log level to build (anything higher is compiled
64 CONFIG_LOG_CONSOLE - Enable writing log records to the console
74 U-Boot has traditionally used a #define called DEBUG to enable debugging on a
75 file-by-file basis. The debug() macro compiles to a printf() statement if
81 The logging facilities are intended to replace DEBUG, but if DEBUG is defined
83 statements will result in output to the console and this output will not be
94 console - goes to stdout
100 Filters are attached to log drivers to control what those drivers emit. Only
101 records that pass through the filter make it to the driver.
109 If no filters are attached to a driver then a default filter is used, which
110 limits output to records with a level less than CONFIG_LOG_MAX_LEVEL.
122 file to ensure the category is correct.
136 bloats the code hugely. The advantage is that it is then possible to enable
146 Convenience functions to support setting the category:
153 Convenience functions to support a category defined for a single file, for
159 corresponding to the function name:
165 device - goes to a device (e.g. serial)
168 Convert debug() statements in the code to log() statements
172 Convert error() statements in the code to log() statements
174 Figure out what to do with BUG(), BUG_ON() and warn_non_spl()
176 Figure out what to do with assert()
178 Add a way to browse log records
180 Add a way to record log records for browsing using an external tool
182 Add commands to add and remove filters
184 Add commands to add and remove log devices
186 Allow sharing of printf format strings in log records to reduce storage size
189 Add a command-line option to sandbox to set the default logging level
191 Convert core driver model code to use logging
193 Convert uclasses to use logging with the correct category
196 function to avoid that
198 Passing log records through to linux (e.g. via device tree /chosen)
200 Provide a command to access the number of log records generated, and the
201 number dropped due to them being generated before the log system was ready.
205 Enhance the log console driver to show level / category / file / line
208 Add a command to add new log records and delete existing records.
210 Provide additional log() functions - e.g. logc() to specify the category