Commit Graph

55986 Commits

Author SHA1 Message Date
Alexander von Gluck IV
c0d4def4e4 intel_extreme: Implement Ilk PCH FDI link training
* IronLake tested and FDI says it trains successfully
* Still no LVDS video on Ilk
2016-07-29 16:04:40 -05:00
Automatic Committer
9ca266967d Update usb.ids from www.linux-usb.org 2016-07-28 05:20:21 +02:00
Automatic Committer
7c75696ad2 Update pci.ids from pciids.sourceforge.net 2016-07-28 05:20:19 +02:00
Jérôme Duval
8a12a74e81 XHCI: fix KDL for transfers using more than 1TD.
* TD chains were broken, any transfer above ~1MB would trigger a KDL.
* _LinkDescriptorForPipe() links the last TD of the chain instead of the first.
* Still buggy: the transfer ring can still block and transfers then fail.
* Enable TRB_3_ISP_BIT where appropriate (Interrupt on Short Packet).
* Also fix WriteDescriptorChain() and ReadDescriptorChain() for multiple-TD chains.
2016-07-27 21:48:05 +02:00
Jérôme Duval
1646f49791 Update freetype, harfbuzz, libwebp and python packages. 2016-07-27 21:22:37 +02:00
François Revol
e0a322db92 netresolv: remove asserts from inet_pton()
There are still asserts in inet_pton4 and 6 anyway.

libgit2's tests expect inet_pton() to fail with EAFNOSUPPORT on unsupported
address families instead of crashing...
2016-07-26 23:52:29 +02:00
Augustin Cavalier
b267679b51 XHCI: Remove the whitelist and enable by default for all controllers.
Discussed with kallisti5 and PulkoMandy before committing. So far, the
only bugs since korli's recent changes either are minor ones that don't
appear to affect functionality (e.g. #12860), or so bad that nothing works
(so, just as good as if the controller was disabled.) PulkoMandy reports
that his controller works but wasn't whitelisted, as have some other users,
so I'm enabling it by default.

If there turn out to be too many broken devices, we can revert this. Or only
revert it in the beta branch, if needed.
2016-07-25 18:01:32 -04:00
François Revol
7f6136828c Add more X11 packages including libxpm
inputproto, kbproto, libx11, libxpm, xextproto, xtrans.

Updated xproto.

Now maybe I can get xpm icons in my XEmacs toolbars?
2016-07-25 00:35:53 +02:00
Axel Dörfler
871a4f63c7 app_server: Fixed crash if there is no window. 2016-07-24 23:14:37 +02:00
Axel Dörfler
6331a6bd91 app_server: The client memory allocator is now reference counted.
* Not sure if cursors could also have triggered this, but the memory
  allocator can now outlive its ServerApp.
* However, this may also reveal cases of memory that is not freed
  correctly.
2016-07-24 21:53:04 +02:00
Axel Dörfler
df8d92af25 Minor cleanup. 2016-07-24 13:01:09 +02:00
Augustin Cavalier
af3057423c LegacyPackageInstaller: Correct previous commit.
The test in the previous commit had a totally flawed invocation of strcmp().
I probably shouldn't attempt to write C code without consulting the manual.

Even if it had worked, it would have worked on too many cases, including
some volume paths. So I reordered the if statement and added it in there.
2016-07-23 10:54:01 -04:00
Augustin Cavalier
8cf0752f1b LegacyPackageInstaller: Override fPathType when the path begins with /boot/.
Fixes installation of the RefLine pkg. I don't know why, but it seems to
specify the path as a P_INSTALL_PATH.
2016-07-23 10:28:07 -04:00
Jérôme Duval
6f087f38ee Update binutils packages. 2016-07-23 00:41:48 +02:00
Augustin Cavalier
606ae81af4 Tracker: Move deprecated FSUtils functions to FBCPadding.cpp.
This includes FSCopyAttributesAndStats as well as an older version of
FSGetDeskDir, and adds another alias of FSGetTrashDir. Fixes BeIDE
compatibility.
2016-07-21 22:19:01 -04:00
Augustin Cavalier
c1cd54a0e1 FSUtils: Add a "bool copyTimes" argument to FSCopyAttributesAndStats().
BPoseView::NewFileFromTemplate does not want to copy the times. Fixes #11702.

We have to keep a 2-argument version of this function because it looks like
some third-party applications might call it (e.g. Dockbert), and even
though it's technically private API, it's easy enough to preserve binary
compatibility.
2016-07-21 21:23:18 -04:00
Augustin Cavalier
e944dacae0 Tracker: Remove special filtering case from NewFileFromTemplate.
If the pose matches the current type-ahead filter, it will be added
by the node watcher anyway, so this just created duplicate poses
which messed up internal data structures. Fixes #11122.
2016-07-21 21:12:09 -04:00
Augustin Cavalier
0c1281a14f hda: Create HDA_QUIRK_NO_CORBRP_RESET_ACK and use it.
This is instead of just checking for NVIDIA devices. Also add an entry
for Intel 0x2668 (VirtualBox's HDA controller). Gets HDA a bit further
in VirtualBox, but an acquire_sem() times out later on.
2016-07-21 19:21:31 -04:00
Dario Casalinuovo
4e793ddd87 http_streamer: Don't always use listener's IsRunning
* We are not really handling http requests only.
* Also move BHttpResult retrieve after casting BUrlRequest.
2016-07-21 20:25:01 +02:00
Dario Casalinuovo
b4515980f3 http_streamer: Handle http status codes
* Avoid to stop the next request after redirection.
* Fixes #12854.
2016-07-21 20:08:01 +02:00
Automatic Committer
a6c1049a55 Update pci.ids from pciids.sourceforge.net 2016-07-21 05:20:17 +02:00
François Revol
02283e080c M68K: drop the custom C arch_cpu_user_mem*() for the default impl
I didn't notice there was a C++ version that didn't require writing asm.

I'll have to write them anyway for speed someday.
2016-07-20 21:57:19 +02:00
François Revol
169349c98f M68K: more SMP stubbing
We'll very much likely never support SMP on M68K...
(unless someone has an SMP machine to donate? :D)
2016-07-20 21:56:15 +02:00
François Revol
ad4b06aa75 m68k/paging: Convert to new-style CPU management
* Aka, post-scheduler changes
* Luckily M68K paging code is very simular to x86 paging
2016-07-20 21:28:56 +02:00
François Revol
9df4533caa M68K: use the updated atomic semantics
* Use atomic_get_and_set to return the old value
* Atomics are no longer volatile
2016-07-20 21:26:32 +02:00
François Revol
a462159ce3 M68K: Update to new system_info structures 2016-07-20 21:26:12 +02:00
François Revol
7cd7ba758c M68K: fix implicit casts of fault handler 2016-07-20 21:07:26 +02:00
François Revol
830fd19eb5 M68K: Fix spinlock initialization 2016-07-20 21:06:38 +02:00
François Revol
d26fd5f68d M68K: drop the platform_type field, the enum is gone from OS.h 2016-07-20 20:31:14 +02:00
François Revol
c094f04537 M68K: dos2unix some files
For some reason they used CR-LF.
2016-07-20 20:27:08 +02:00
François Revol
990d34efdd M68K: add arch_cpu_idle and arch_cpu_pause inline stubs
Remove the stub from arch_cpu.cpp

We might want to implement a 040 CPU module providing idle using LPSTOP.
2016-07-20 20:26:29 +02:00
François Revol
7ab9993a18 M68K: Add missing defines
No idea for cache level.

On 030 and 040 a cache line is 16 bytes.
2016-07-20 20:26:29 +02:00
François Revol
58820fadb1 M68K: update bootstrap packages version 2016-07-20 20:26:29 +02:00
François Revol
3805f72225 M68K: add arch_atomic.h 2016-07-20 20:26:29 +02:00
François Revol
47a20cd6d1 M68K: turn #warnings into comments in public headers
The warnings made those headers and those including them not detectable
by libiberty's configure because of the way it checked for them.

This fixes the gcc build.
2016-07-20 20:26:29 +02:00
John Scipione
d704be3579 DeskCalc: Live update base color again
... but only if you don't have a custom base color set.

Was broken trying to fix color drop regression in hrev50428

We don't want your custom Deskcalc color to get
overridden accidentially.

If you have dropped a custom base color and you want live
updating to work again, drop the current panel background
color.
2016-07-20 10:53:25 -07:00
John Scipione
f8056cd9a4 DeskCalc: Set base color to panel bg color by default
...in unused ctor
2016-07-20 10:47:46 -07:00
John Scipione
572ecd207d DeskCalc: Style fixes 2016-07-20 10:47:04 -07:00
Jérôme Duval
468d852266 Update or add flac,libao,libsndfile,libogg,opus packages. 2016-07-20 19:31:02 +02:00
François Revol
181391c106 ARM: Add TODO on barrier calls, we might need to do more here
They look suspiciously empty.
2016-07-20 18:53:24 +02:00
Jérôme Duval
b33ffcda12 Update expat and wget packages. 2016-07-20 17:02:05 +02:00
Alexander von Gluck IV
f6c32ce310 intel_extreme: Set FDI PLL RX lane count when enabling 2016-07-20 00:25:38 -05:00
looncraz
04039d6f30 BStringView: Proper color inheritence.
Legacy applications setting colors manually on BStringView would prevent
the BStringView from inheriting theparent view color.  Most legacy
applications that did this also set the view color manually, so this went
unnoticed except in Beezer's Preferences window.

This fix introduces another, minor, issue for legacy applications that do
the same thing - they will not receive the system default panel text color.
In most instances, you don't want that happening anyway, so it's not much of
an issue.

Fixes #12868.

Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
2016-07-19 20:28:38 -04:00
Augustin Cavalier
dcdb22ed4e 3DMov: Remove from tree, now lives at HaikuArchives.
Hasn't been included in the build for some time, AFAICT.
2016-07-19 20:24:34 -04:00
Axel Dörfler
a449e2305c Tracker: Made open-with menu scale with font size. 2016-07-19 23:57:26 +02:00
Axel Dörfler
36c80cff6e Tracker: Fixed CachedEntryIterator::GetNextEntry() debug build.
* A "style fix" introduced in 54e2dd7272
  broke the debug version by reversing the assertion logic.
2016-07-19 23:57:26 +02:00
Axel Dörfler
0bcb836563 Tracker: Remove adding BeOS trash icons in trash watcher.
* The icons have been removed in 4e38bdba17
  which caused a debugger call in the debug build.
2016-07-19 23:57:26 +02:00
Jérôme Duval
b1811a3a45 Update cmake, libogg and llvm packages for x86. 2016-07-19 23:59:03 +02:00
Axel Dörfler
578fabdea3 net_buffer: Fixed clang warning.
* This closes ticket #12825.
2016-07-19 22:57:18 +02:00
John Scipione
1d3dbfcc38 Deskcalc: Don't set base color on _Colorize()
Fixes #12864
2016-07-19 13:06:50 -07:00