<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>031beb4e - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#031beb4e</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e76 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#193d9e76</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 10:10:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3bf2fc85 - Do not build real mode emulator for i386.  We use VM86 again since r210877.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#3bf2fc85</link>
        <description>Do not build real mode emulator for i386.  We use VM86 again since r210877.

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Sun, 08 Aug 2010 06:18:05 +0000</pubDate>
        <dc:creator>Jung-uk Kim &lt;jkim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>aa3d547d - MFC x86emu/x86bios emulator and make previously i386 only dpms and vesa</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#aa3d547d</link>
        <description>MFC x86emu/x86bios emulator and make previously i386 only dpms and vesaframebuffer driver, etc. work on FreeBSD/amd64.A significant amount of improvements were done by jkim@ during the recentmonths to make vesa(4) work better, over the initial code import.  Thiswork is based on OpenBSD&apos;s x86emu implementation and contributed byparadox &lt;ddkprog yahoo com&gt; and swell.k at gmail com.Hopefully I have stolen all their work to 8-STABLE :)All bugs in this commit are mine, as usual.

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Tue, 02 Mar 2010 01:56:55 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>3219f535 - Rewrite x86bios and update its dependent drivers.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#3219f535</link>
        <description>Rewrite x86bios and update its dependent drivers.- Do not map entire real mode memory (1MB).  Instead, we map IVT/BDA andROM area separately.  Most notably, ROM area is mapped as device memory(uncacheable) as it should be.  User memory is dynamically allocated andfree&apos;ed with contigmalloc(9) and contigfree(9).  Remove now redundant andpotentially dangerous x86bios_alloc.c.  If this emulator ever grows tosupport non-PC hardware, we may implement it with rman(9) later.- Move all host-specific initializations from x86emu_util.c to x86bios.c andremove now unnecessary x86emu_util.c.  Currently, non-PC hardware is notsupported.  We may use bus_space(9) later when the KPI is fixed.- Replace all bzero() calls for emulated registers with more obviously namedx86bios_init_regs().  This function also initializes DS and SS properly.- Add x86bios_get_intr().  This function checks if the interrupt vector isavailable for the platform.  It is not necessary for PC-compatible hardwarebut it may be needed later. ;-)- Do not try turning off monitor if DPMS does not support the state.- Allocate stable memory for VESA OEM strings instead of just holdingpointers to them.  They may or may not be accessible always.  Fix a memoryleak of video mode table while I am here.- Add (experimental) BIOS POST call for vesa(4).  This function calls VGABIOS POST code from the current VGA option ROM.  Some video controllerscannot save and restore the state properly even if it is claimed to besupported.  Usually the symptom is blank display after resuming from suspendstate.  If the video mode does not match the previous mode after restoring,we try BIOS POST and force the known good initial state.  Some magic wastaken from NetBSD (and it was taken from vbetool, I believe.)- Add a loader tunable for vgapci(4) to give a hint to dpms(4) and vesa(4)to identify who owns the VESA BIOS.  This is very useful for multi-displayadapter setup.  By default, the POST video controller is automaticallyprobed and the tunable &quot;hw.pci.default_vgapci_unit&quot; is set to correspondingvgapci unit number.  You may override it from loader but it is very unlikelyto be necessary.  Unfortunately only AGP/PCI/PCI-E controllers can bematched because ISA controller does not have necessary device IDs.- Fix a long standing bug in state save/restore function.  The state bufferpointer should be ES:BX, not ES:DI according to VBE 3.0.  If it ever worked,that&apos;s because BX was always zero. :-)- Clean up register initializations more clearer per VBE 3.0.- Fix a lot of style issues with vesa(4).

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Mon, 19 Oct 2009 20:58:10 +0000</pubDate>
        <dc:creator>Jung-uk Kim &lt;jkim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>19de5df5 - Move sys/dev/x86bios to sys/compat/x86bios.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#19de5df5</link>
        <description>Move sys/dev/x86bios to sys/compat/x86bios.It may not be optimal but it is clearly better than the old place.OK&apos;ed by:	delphij, paradox (ddkprog yahoo com)

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Wed, 23 Sep 2009 20:49:14 +0000</pubDate>
        <dc:creator>Jung-uk Kim &lt;jkim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>205d67b0 - Collapase interrupt supporting functions to a new module, and switch from</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/x86bios/Makefile#205d67b0</link>
        <description>Collapase interrupt supporting functions to a new module, and switch fromx86emu to this new module.This changeset also brings a fix for bugs introduced with the initialx86emu commit, which prevents the user from using some display mode orcause instant reboots during mode switch.Submitted by:	paradox &lt;ddkprog yahoo com&gt;

            List of files:
            /freebsd-14.2/sys/modules/x86bios/Makefile</description>
        <pubDate>Mon, 21 Sep 2009 08:17:57 +0000</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
