Move video/colors.c into video.mod.
This commit is contained in:
parent
477343c86e
commit
1c95b6d2bf
2 changed files with 3 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
2010-12-10 Colin Watson <cjwatson@ubuntu.com>
|
2010-12-23 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
Move gfxmenu color handling to video, so that gfxterm can use it
|
Move gfxmenu color handling to video, so that gfxterm can use it
|
||||||
too.
|
too.
|
||||||
|
@ -30,8 +30,7 @@
|
||||||
* grub-core/Makefile.core.def (kernel) [videoinkernel]: Add
|
* grub-core/Makefile.core.def (kernel) [videoinkernel]: Add
|
||||||
video/colors.c.
|
video/colors.c.
|
||||||
(gfxmenu): Remove gfxmenu/named_colors.c.
|
(gfxmenu): Remove gfxmenu/named_colors.c.
|
||||||
(video_colors) [videomodules]: New module, containing
|
(video) [videomodules]: Add video/colors.c.
|
||||||
video/colors.c.
|
|
||||||
|
|
||||||
Add a background_color command.
|
Add a background_color command.
|
||||||
|
|
||||||
|
|
|
@ -1442,12 +1442,6 @@ module = {
|
||||||
enable = i386_pc;
|
enable = i386_pc;
|
||||||
};
|
};
|
||||||
|
|
||||||
module = {
|
|
||||||
name = video_colors;
|
|
||||||
common = video/colors.c;
|
|
||||||
enable = videomodules;
|
|
||||||
};
|
|
||||||
|
|
||||||
module = {
|
module = {
|
||||||
name = video_fb;
|
name = video_fb;
|
||||||
common = video/fb/video_fb.c;
|
common = video/fb/video_fb.c;
|
||||||
|
@ -1460,6 +1454,7 @@ module = {
|
||||||
module = {
|
module = {
|
||||||
name = video;
|
name = video;
|
||||||
common = video/video.c;
|
common = video/video.c;
|
||||||
|
common = video/colors.c;
|
||||||
enable = videomodules;
|
enable = videomodules;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue