Guest User

Untitled

a guest
Aug 3rd, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.74 KB | None | 0 0
  1. start at f5edabc8f84adaa05abcb2d8ee8c013ab6da616d
  2.  
  3. commit 71b9d8cf3ba0cec43cf2e32bd04db826e9cd95f4
  4. Author: Michael Lotz <mmlr@mlotz.ch>
  5. Date: Thu Jun 16 22:36:22 2011 +0000
  6.  
  7. Check for the (local) APIC feature on the CPU before moving on to SMP config and
  8. APIC enumeration. As the local APIC is the basis for inter-CPU communication, we
  9. can't do SMP when it's absent.
  10. Fixes #7692, but indeed it makes no real sense for QEMU to provide the APIC info
  11. in the MP and ACPI tables (and actually emulate the hardware) when it disables
  12. the APIC support flag at the same time.
  13.  
  14. commit b617e8daff059ecac1df1ca58514fafaeb7dc515
  15. Author: Michael Lotz <mmlr@mlotz.ch>
  16. Date: Mon Jun 20 22:24:36 2011 +0000
  17.  
  18. A blast from the past: r15048 from way back removed the wrong boolean parameter
  19. causing the message to be sent with a timeout of "true" (getting converted to 1)
  20. instead of the intended 0 meaning no/infinite timeout. This caused the message
  21. sending to be aborted due to the timeout if it was blocking on a full port for
  22. example. Since the return value is never checked noone noticed.
  23. It's possible that this was the cause of some lost input messages (mouse,
  24. keyboard) when the system was under heavy enough load for either the port heap
  25. to be exhausted (unlikely) or the input_server <-> app_server port to run full
  26. (quite possible).
  27.  
  28. commit 50a9a98edb3bdeb4f1620f1fa47349ba961ce22b
  29. Author: Michael Lotz <mmlr@mlotz.ch>
  30. Date: Fri Jun 24 15:37:51 2011 +0000
  31.  
  32. Add the pcnet driver to the image and remove reference to the old vlance driver.
  33. It seems to work fine in VirtualBox and makes the network card work that is
  34. emulated by default. From the log it looks like Hugo actually ported/implemented
  35. the driver under VMWare and it worked, so that it isn't in the image looks like
  36. an oversight.
  37.  
  38. commit 7f4deb4400434bb3c210a7b0333eddd4800290bf
  39. Author: Siarzhuk Zharski <zharik@gmx.li>
  40. Date: Sun Jun 26 19:38:26 2011 +0000
  41.  
  42. PS2 improvements
  43.  
  44.  
  45. commit d6e4f54f2de4c76fbfbe85fc348a8fde8c296dc6
  46. Author: Jérôme Duval <korli@users.berlios.de>
  47. Date: Fri Jul 29 10:06:34 2011 +0000
  48.  
  49. Patch by Jian Chiang as part of his GSoc Project (coding style fixes by myself):
  50. * xhci controller start operation
  51. * command ring and event ring initialization
  52. * No-Op Command test and real xhci irq handle
  53. * xhci root hub support
  54. * add Super Speed enumeration and xhci_rh.cpp into jamfile
  55.  
  56. commit 51a01ea03b482556ca9780c879a727fad22201c6
  57. Author: Jérôme Duval <korli@users.berlios.de>
  58. Date: Thu Aug 25 16:36:48 2011 +0000
  59.  
  60. Patch from Gabriel Hartmann for his GSoC UVC project. Coding style updates by myself. Thanks!
  61.  
  62.  
  63. commit f78f38a51c1b42bf25bc6fa1c35006263f6589fb
  64. Author: Alexander von Gluck IV <kallisti5@unixzen.com>
  65. Date: Fri Sep 2 16:27:35 2011 +0000
  66.  
  67. * rename wimax driver directory to wwan to be more generic
  68. * given the rise of other 4G wwan technology such as lte, this
  69. seems cleaner and better matches wlan directory for wifi.
  70.  
  71.  
  72. commit e94e30ff788110f2cafe556f2d4eccfeb9da08ca
  73. Author: Michael Lotz <mmlr@mlotz.ch>
  74. Date: Wed Sep 28 00:33:45 2011 +0000
  75.  
  76. Add the wpa_supplicant optional package. It should be stable and is working on
  77. the limited set of hardware I could test it with.
  78. By installing the wpa_supplicant one can now join WEP/WPA/WPA2 networks by
  79. either selecting them in the network prefs/network status applet or using
  80. "ifconfig <interface> join <network name> [password]". The wpa_supplicant opens
  81. a dialog asking for more details if it can't connect with the given information.
  82. Note that there is no way to automatically store that extra info right now, so
  83. it has to be provided on each join. The configuration can however be stored
  84. manually into the /boot/common/settings/network/wireless_networks config file.
  85. commit a1b98367ae834c4bb2027a0a7b8e9384af0f89d3
  86. Author: Michael Lotz <mmlr@mlotz.ch>
  87. Date: Fri Oct 7 10:23:47 2011 +0000
  88.  
  89. Add a way to add persistent (configured) wireless_networks that will eventually
  90. be stored by the backend in the net_server. I put it in BNetworkDevice because
  91. that is where network enumeration is done as well, but I'm not sure that it fits
  92. there particularly well.
  93. Since BNetworkDevice::GetNetwork() directly interfaces with the driver and gets
  94. the networks from scan results, such persistent networks don't yet show up in
  95. those enumerations.
  96.  
  97. commit 79e3f9012d7246bc8cec7f31291d84f33c5251e2
  98. Author: Stefano Ceccherini <stefano.ceccherini@gmail.com>
  99. Date: Thu Oct 13 08:20:10 2011 +0000
  100.  
  101. HPET driver for testing HPET code more easily.
  102. Seems to work correctly on real hardware, not on qemu where it
  103. can only use the irq 2, and this causes wreakage (could be a programming error).
  104. Changed from the kernel code:
  105. - Adapted to use as a driver
  106. - Configure for level interrupts instead of edge, which seems not to work correctly
  107. - Add traceing dprintfs
  108. - Various other changes
  109. Does not use yet the new interrupt api introduced by Michael Lotz.
  110.  
  111.  
  112. commit e436a27e5f6df975a1e35c27f42e8f6ad27ebdca
  113. Author: Michael Lotz <mmlr@mlotz.ch>
  114. Date: Thu Oct 13 09:07:33 2011 +0000
  115.  
  116. * Add preliminary support for one SandyBridge mobile integrated graphics device
  117. (the one in my new ThinkPad X1). The PLL is still off a bit so it has a few
  118. blurry stripes, but EDID and mode setting basically works.
  119. * Starting with IronLake the north/south bridge or (G)MCH/ICH setup was moved
  120. into a platform control hub (PCH) which means that many registers previously
  121. located in the GMCH are now in the PCH and have a new address.
  122. * I'm committing this mostly because this way the additions are more easy to
  123. follow. It is a bit messy and I'll clean it up more and possibly make it a
  124. bit more generic. Also most of these changes actually apply to IronLake and up
  125. and aren't SandyBridge specific, so a few of those additions will still get a
  126. broader scope and new chips will be added.
  127.  
  128.  
  129.  
  130. commit cc5eca75540f0750fbc325eab1f82c168564336b
  131. Author: Oliver Tappe <zooey@hirschkaefer.de>
  132. Date: Tue Nov 22 18:31:27 2011 +0100
  133.  
  134. Activate our new multibyte implementation.
  135. (locale)
  136. commit ec99f3b2a665ab678c6c8ae3c7bd1c6a0d34fb68
  137. Author: Oliver Tappe <zooey@hirschkaefer.de>
  138. Date: Thu Dec 15 13:10:26 2011 +0100
  139. This brings our multibyte implementation into a fully working state,
  140. both non-ascii and non-8-bit characters can now be handled normally
  141. in the Terminal, i.e. this finally fixes #6276.
  142.  
  143. N.B.: Since the size of mbstate_t has changed, everything (including
  144. the compiler!) needs to be rebuilt
  145.  
  146. commit 7e2f796c901c4d3eba299728d0334971ce4b865b
  147. Author: Root User <baron@HaikuVBoxik.(none)>
  148. Date: Mon Nov 28 13:16:28 2011 +0100
  149.  
  150. Localization support added into Jamfile-engine.
  151. * Added possibility to localize projects driven by Jamfile-engine in
  152. the easy way. Targets "catkeys", "catalogs", "catlogsinstall",
  153. "bindcatalogs" introduced.
  154. * This contribution was made by Peter Polacik during working on GCI 2011
  155. tasks. Thank you!
  156.  
  157.  
  158. port heap, vm, kernel fixes and improvements
  159. Debugger
  160. SATdecorator
  161. bb2e9b06acb1783543442464561b7811892ee7e2
  162. radeon_hd
  163. AtomBIOS
  164. intel_extreme
  165. 654613b66163404d50df58dfa7a1de19b1d6c22a
  166. ATI mach64/Rage
  167. 124cdd4f576b15760ed343fddb0d6bb8efcaee27
  168. ice1712
  169.  
  170. layout api (gcc4 apps from R1a3 and older need to be recompiled)
  171. Appearance preflet
  172. IPv6 modules added to the build
  173. 13bec72c73ba2fe70f4ebb80674df81e3a494242
  174. Network drivers
  175. 698b6790bc0abe4faa133affee673a651fe60034
  176. 283db26d5c13815ee18d3b4a9a51789db2fa98d2
  177. * Support for DEC 21140 (Tulip) chipsets (provided by the 'de' driver)
  178. incorporated into dec21xxx driver. That brings network connectivity to
  179. Haiku systems running in MS Virtual PC VMs.
  180. d1e1709087f986fa437f3db30d0beff372fd6864
  181. b1312c5c6476d30d8b52cd5e7030c9a6e2376359
  182. 8060e7787fa3f8e45f8a148e968d8f99ef094623 FreeBSD 9.0
  183. 5f1c0791b39b7de6321658ce707d1788eda0f27b
  184. usb_davicom
  185. b337f35c4582d93d7560ef105bba95b1e092807e
  186. 288723f429eaa141c5ddd55dafe252b34be35fc5
  187. 8f789932e88f9090a15e0b407c6eb6c20fe78186
  188.  
  189. locale binary
  190. 83a30ba91e85b656b44631b50cce01a7919682e2
  191. Vesa
  192. f7d98b0923817ad675be677ea2e42ed706f23ff7
  193. 5eed3d989274a8689744af60aec0894d94b7d733
  194. Notifications
  195. 9dcd41a8afd79a7743783f689707d6a4a62e25f6
  196. 4ec6c3a042bbc8e2e94b2ccd19c1e9289232d1e4
  197. 44c6e69bd178b3fcfc48b180b394d4075a89d091
  198. Updated ICU
  199. Note: all software using ICU (like WebPositive) needs to be rebuilt!
  200. 45f2f22b5250a7be9cdb0a82dee2ca91aaa8398d
  201.  
  202. POSIX signals support
  203.  
  204. Mesa
  205.  
  206. BFS and checkfs improvements
  207.  
  208. Deskbar
  209. Keymaps
Add Comment
Please, Sign In to add comment