FreeBSD Bugzilla – Attachment 38976 Details for
Bug 61549
Bochs Makefile lacks options dealing with the
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 4.99 KB, created by
kstailey
on 2004-01-18 21:40:08 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
kstailey
Created:
2004-01-18 21:40:08 UTC
Size:
4.99 KB
patch
obsolete
>Index: Makefile >=================================================================== >RCS file: /u1/cvsup/FreeBSD-cvs/root/ports/ports/emulators/bochs/Makefile,v >retrieving revision 1.57 >diff -u -r1.57 Makefile >--- Makefile 15 Jul 2003 19:22:40 -0000 1.57 >+++ Makefile 18 Jan 2004 15:45:34 -0000 >@@ -89,6 +89,18 @@ > CONFIGURE_ARGS+= --enable-sb16=freebsd > .endif > >+.if defined(WITH_YIELD_CPU) >+CONFIGURE_ARGS+= --enable-idle-hack >+.endif >+ >+.if defined(WITH_SLOWDOWN) >+CONFIGURE_ARGS+= --enable-slowdown >+.endif >+ >+.if defined(WITH_NEW_PIT) >+CONFIGURE_ARGS+= --enable-new-pit >+.endif >+ > MSG_FILE= ${PKGDIR}/pkg-message > PKGMESSAGE= ${WRKDIR}/pkg-message > >@@ -107,51 +119,68 @@ > @${ECHO_MSG} > .if !defined(WITH_BOCHS_CPU_LEVEL) > @${ECHO_MSG} "If you want to change the processor level to emulate (default is 5, aka Pentium)" >- @${ECHO_MSG} "Choices are 3,4,5,6 which mean target 386, 486, Pentium or Pentium Pro emulation" >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_CPU_LEVEL=<cpu level>\"" >+ @${ECHO_MSG} "choices are 3,4,5,6 which mean target 386, 486, Pentium or Pentium Pro emulation" >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_CPU_LEVEL=<cpu level>\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_TERM) >- @${ECHO_MSG} "If you want to enable the plain text, console-based bochs interface" >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_GUI_TERM=yes\"" >+ @${ECHO_MSG} "If you want to enable the plain text, console-based bochs interface," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_GUI_TERM=yes\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_VESA) > @${ECHO_MSG} "If you want to enable the VESA BIOS video extensions of bochs," >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_VESA=yes\"" >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_VESA=yes\"." > @${ECHO_MSG} > .else >- @${ECHO_MSG} "Remember that with the VESA option you must also use VGABIOS-lgpl-latest" >+ @${ECHO_MSG} "Remember that with the VESA option you must also use VGABIOS-lgpl-latest." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_PROCESSORS) >- @${ECHO_MSG} "If you want to compile with SMP support (implies WITH_BOCHS_CPU_LEVEL=6)." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_PROCESSORS=<number of processors>\"" >+ @${ECHO_MSG} "If you want to compile with SMP support (implies WITH_BOCHS_CPU_LEVEL=6)," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_PROCESSORS=<number of CPUs>\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_DEBUGGER) >- @${ECHO_MSG} "If you want to compile with builtin debugger and disassembler support." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_DEBUGGER=yes\"" >+ @${ECHO_MSG} "If you want to compile with builtin debugger and disassembler support," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_DEBUGGER=yes\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_X86_DEBUGGER) >- @${ECHO_MSG} "If you want to compile with x86 hardware debugger support." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_X86_DEBUGGER=yes\"" >+ @${ECHO_MSG} "If you want to compile with x86 hardware debugger support," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_X86_DEBUGGER=yes\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_BOCHS_AMD64) >- @${ECHO_MSG} "If you want to compile with AMD x86-64 support." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\"" >+ @${ECHO_MSG} "If you want to compile with AMD x86-64 support," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_BOCHS_AMD64=yes\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_NE2000) >- @${ECHO_MSG} "If you want to compile with networking (ne2000) support." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_NE2000=yes\"" >+ @${ECHO_MSG} "If you want to compile with networking (ne2000) support," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_NE2000=yes\"." > @${ECHO_MSG} > .endif > .if !defined(WITH_SOUND) >- @${ECHO_MSG} "If you want to compile with sound (blaster 16) support." >- @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SOUND=yes\"" >+ @${ECHO_MSG} "If you want to compile with sound (blaster 16) support," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SOUND=yes\"." >+ @${ECHO_MSG} >+.endif >+.if !defined(WITH_YIELD_CPU) >+ @${ECHO_MSG} "If you want to compile with a hack that makes bochs yield the CPU when idle," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_YIELD=yes\"." >+ @${ECHO_MSG} >+.endif >+.if !defined(WITH_SLOWDOWN) >+ @${ECHO_MSG} "Does your guest OS have a screensaver which goes off too soon? Use this." >+ @${ECHO_MSG} "If you want to compile with the option to slowdown when the CPU when idle," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_SLOWDOWN=yes\"." >+ @${ECHO_MSG} >+.endif >+.if !defined(WITH_NEW_PIT) >+ @${ECHO_MSG} "PIT attempts to keep the bochs clock and system clock in sync." >+ @${ECHO_MSG} "If you want to compile with the improved PIT," >+ @${ECHO_MSG} "hit Ctrl-C right now and use \"make WITH_NEW_PIT=yes\"." > .endif > @${ECHO_MSG}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 61549
: 38976