Documentation/translations/zh_TW/admin-guide/bootconfig.rst

Source file repositories/reference/linux-study-clean/Documentation/translations/zh_TW/admin-guide/bootconfig.rst

File Facts

System
Linux kernel
Corpus path
Documentation/translations/zh_TW/admin-guide/bootconfig.rst
Extension
.rst
Size
9688 bytes
Lines
295
Domain
Support Tooling And Documentation
Bucket
Documentation
Inferred role
Support Tooling And Documentation: documentation
Status
atlas-only

Why This File Exists

Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.

Dependency Surface

Detected Declarations

Annotated Snippet

xbc_array_for_each_value(vnode, value) {
      printk("%s ", value);
    }

如果您想查找具有前綴字符串的鍵,可以使用 xbc_find_node() 通過前綴字符串查找
節點,然後用 xbc_node_for_each_key_value() 迭代前綴節點下的鍵。

但最典型的用法是獲取前綴下的命名值或前綴下的命名數組,例如::

 root = xbc_find_node("key.prefix");
 value = xbc_node_find_value(root, "option", &vnode);
 ...
 xbc_node_for_each_array_value(root, "array-option", value, anode) {
    ...
 }

這將訪問值“key.prefix.option”的值和“key.prefix.array-option”的數組。

鎖是不需要的,因爲在初始化之後配置只讀。如果需要修改,必須複製所有數據和關鍵字。


函數與結構體
============

相關定義的kernel-doc參見:

 - include/linux/bootconfig.h
 - lib/bootconfig.c

Annotation

Implementation Notes