diff options
Diffstat (limited to 'stand/i386/libi386/vbe.c')
-rw-r--r-- | stand/i386/libi386/vbe.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/stand/i386/libi386/vbe.c b/stand/i386/libi386/vbe.c index 3caba3081f06..00b9ab7ae0dc 100644 --- a/stand/i386/libi386/vbe.c +++ b/stand/i386/libi386/vbe.c @@ -25,11 +25,8 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ -#include <sys/cdefs.h> #include <stand.h> #include <sys/param.h> #include <machine/psl.h> @@ -87,6 +84,11 @@ static struct named_resolution { .height = 1080, }, { + .name = "1440p", + .width = 2560, + .height = 1440, + }, + { .name = "2160p", .alias = "4k", .width = 3840, |