📄 boot_kernel.h
字号:
#ifndef _VIVI_BOOT_KERNEL_H_#define _VIVI_BOOT_KERNEL_H_/* * Media Type: A type of storage device that contains the linux kernel * * +----------------+-----------------------------------------+ * | Value(Integer) | Type | * +----------------+-----------------------------------------+ * | 0 | UNKNOWN | * | 1 | RAM | * | 2 | NOR Flash Memory | * | 3 | SMC (NAND Flash Memory) on the S3C2410 | * | 4 | SMC (NAND Flash Memory) on the S3C2440 | * +----------------+-----------------------------------------+ */enum { MT_UNKNOWN = 0, MT_RAM, MT_NOR_FLASH, MT_SMC_S3C2410,};#endif /* _VIVI_BOOT_KERNEL_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -