Changeset 40898df in mainline
- Timestamp:
- 2011-12-08T20:31:32Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 38650da
- Parents:
- c5ebb59
- Location:
- kernel
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/boot/multiboot2.S
rc5ebb59 r40898df 55 55 .long MULTIBOOT2_TAG_MODULE 56 56 .long MULTIBOOT2_TAG_MEMMAP 57 #ifdef CONFIG_FB 57 58 .long MULTIBOOT2_TAG_FBINFO 59 #endif 58 60 tag_info_req_end: 59 61 … … 85 87 tag_flags_end: 86 88 89 #ifdef CONFIG_FB 87 90 /* Framebuffer tag */ 88 91 tag_framebuffer_start: … … 94 97 .long CONFIG_BFB_BPP 95 98 tag_framebuffer_end: 99 #endif 96 100 97 101 /* Module alignment tag */ -
kernel/arch/ia32/src/boot/multiboot2.S
rc5ebb59 r40898df 53 53 .long MULTIBOOT2_TAG_MODULE 54 54 .long MULTIBOOT2_TAG_MEMMAP 55 #ifdef CONFIG_FB 55 56 .long MULTIBOOT2_TAG_FBINFO 57 #endif 56 58 tag_info_req_end: 57 59 … … 83 85 tag_flags_end: 84 86 87 #ifdef CONFIG_FB 85 88 /* Framebuffer tag */ 86 89 tag_framebuffer_start: … … 92 95 .long CONFIG_BFB_BPP 93 96 tag_framebuffer_end: 97 #endif 94 98 95 99 /* Module alignment tag */ -
kernel/genarch/src/multiboot/multiboot2.c
rc5ebb59 r40898df 76 76 static void multiboot2_fbinfo(const multiboot2_fbinfo_t *fbinfo) 77 77 { 78 #ifdef CONFIG_FB 78 79 if (fbinfo->visual == MULTIBOOT2_VISUAL_RGB) { 79 80 bfb_addr = fbinfo->addr; … … 92 93 bfb_blue_size = fbinfo->rgb.blue_size; 93 94 } 95 #endif 94 96 } 95 97
Note:
See TracChangeset
for help on using the changeset viewer.