No text console with custom kernel
I've recently started using my own custom kernels in Ubuntu, and they are working without problems, with the exception that I don't have a text console when I press any of the key combinations Ctrl+Alt+Fn. I'm only seeing the Ubuntu splash screen. I thought it has something to do with the graphics settings in the kernel configuration under Device drivers -> Graphics support, particularly the Frame buffer settings. I have everything activated which is active in the kernel provided by Ubuntu, except for the fb drivers for specific chipsets other than nvidiafb
, since I have an Nvidia card. Here are the enabled settings:
CONFIG_FB=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
CONFIG_FB_NVIDIA=m
CONFIG_FB_NVIDIA_I2C=y
CONFIG_FB_NVIDIA_BACKLIGHT=y
I wonder which kernel setting is responsible for the text console. My policy of configuring my own kernel was to disable everything I assumed I don't need, especially all the loadable kernel modules for specific devices that are included in the house kernel. Of course, I left many options unchanged as I didn't have a clue what they were about.
For my custom kernels, I have always been using the latest kernel source depended upon by the linux-source
package, which currently is in version 4.15.0-45.48
from January 29. I'm using Ubuntu 18.04 LTS.
kernel graphics virtual-console framebuffer
add a comment |
I've recently started using my own custom kernels in Ubuntu, and they are working without problems, with the exception that I don't have a text console when I press any of the key combinations Ctrl+Alt+Fn. I'm only seeing the Ubuntu splash screen. I thought it has something to do with the graphics settings in the kernel configuration under Device drivers -> Graphics support, particularly the Frame buffer settings. I have everything activated which is active in the kernel provided by Ubuntu, except for the fb drivers for specific chipsets other than nvidiafb
, since I have an Nvidia card. Here are the enabled settings:
CONFIG_FB=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
CONFIG_FB_NVIDIA=m
CONFIG_FB_NVIDIA_I2C=y
CONFIG_FB_NVIDIA_BACKLIGHT=y
I wonder which kernel setting is responsible for the text console. My policy of configuring my own kernel was to disable everything I assumed I don't need, especially all the loadable kernel modules for specific devices that are included in the house kernel. Of course, I left many options unchanged as I didn't have a clue what they were about.
For my custom kernels, I have always been using the latest kernel source depended upon by the linux-source
package, which currently is in version 4.15.0-45.48
from January 29. I'm using Ubuntu 18.04 LTS.
kernel graphics virtual-console framebuffer
add a comment |
I've recently started using my own custom kernels in Ubuntu, and they are working without problems, with the exception that I don't have a text console when I press any of the key combinations Ctrl+Alt+Fn. I'm only seeing the Ubuntu splash screen. I thought it has something to do with the graphics settings in the kernel configuration under Device drivers -> Graphics support, particularly the Frame buffer settings. I have everything activated which is active in the kernel provided by Ubuntu, except for the fb drivers for specific chipsets other than nvidiafb
, since I have an Nvidia card. Here are the enabled settings:
CONFIG_FB=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
CONFIG_FB_NVIDIA=m
CONFIG_FB_NVIDIA_I2C=y
CONFIG_FB_NVIDIA_BACKLIGHT=y
I wonder which kernel setting is responsible for the text console. My policy of configuring my own kernel was to disable everything I assumed I don't need, especially all the loadable kernel modules for specific devices that are included in the house kernel. Of course, I left many options unchanged as I didn't have a clue what they were about.
For my custom kernels, I have always been using the latest kernel source depended upon by the linux-source
package, which currently is in version 4.15.0-45.48
from January 29. I'm using Ubuntu 18.04 LTS.
kernel graphics virtual-console framebuffer
I've recently started using my own custom kernels in Ubuntu, and they are working without problems, with the exception that I don't have a text console when I press any of the key combinations Ctrl+Alt+Fn. I'm only seeing the Ubuntu splash screen. I thought it has something to do with the graphics settings in the kernel configuration under Device drivers -> Graphics support, particularly the Frame buffer settings. I have everything activated which is active in the kernel provided by Ubuntu, except for the fb drivers for specific chipsets other than nvidiafb
, since I have an Nvidia card. Here are the enabled settings:
CONFIG_FB=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB_DDC=m
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
CONFIG_FB_NVIDIA=m
CONFIG_FB_NVIDIA_I2C=y
CONFIG_FB_NVIDIA_BACKLIGHT=y
I wonder which kernel setting is responsible for the text console. My policy of configuring my own kernel was to disable everything I assumed I don't need, especially all the loadable kernel modules for specific devices that are included in the house kernel. Of course, I left many options unchanged as I didn't have a clue what they were about.
For my custom kernels, I have always been using the latest kernel source depended upon by the linux-source
package, which currently is in version 4.15.0-45.48
from January 29. I'm using Ubuntu 18.04 LTS.
kernel graphics virtual-console framebuffer
kernel graphics virtual-console framebuffer
edited 10 hours ago
Stefan Hamcke
asked 10 hours ago
Stefan HamckeStefan Hamcke
4851622
4851622
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1122810%2fno-text-console-with-custom-kernel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1122810%2fno-text-console-with-custom-kernel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown