Axel Dörfler
c832ff1e1b
Fixed a race condition in the block allocator initialization (the lock was held
...
too late, and could theoretically already be acquired by someone else).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7402 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-04 00:07:38 +00:00
Philippe Houdoin
dd8f2aef56
Jamfile for ipro1000 driver too.
...
Added ipro1000, rtl8169 and via-rhine to build.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7401 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:41:33 +00:00
Michael Phipps
6acaca4662
Should have never been there.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7400 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:38:22 +00:00
beveloper
56676a8c4b
This is the real hard stuff!
...
FreeBSD compatibility layer that provides a struct ifnet interface,
all #defines that are used by the driver, the mbuf functions,
mbuf queues, etc.
Also some unused things are provided by empty macros.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7399 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:31:45 +00:00
beveloper
b567981843
A simple memory pool that is used the the mbuf support. Can be called
...
from within an interrupt handler, and wastes pretty much memory.
Knows only about two different block sizes, and implements them by
using a simple free list.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7398 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:29:46 +00:00
beveloper
07815bc520
The driver interface detects the cards and publishes defs entries.
...
util.* provide a convenience function to map physical memory.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7397 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:27:26 +00:00
Philippe Houdoin
8f1b75b72e
Jamify the new network cards drivers commited by Marcus.
...
Coming soon for ipro1000, too.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7396 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:25:31 +00:00
beveloper
6ba61f712f
The device driver interface to the network stack, either BeOS R5, BONE, or OpenBeOS.
...
Initialized attaches and detaches the core driver, sends and receives packets
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7395 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:21:39 +00:00
beveloper
21482d71c1
a very simple debugging macro
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7394 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:17:40 +00:00
beveloper
46e6df0fc5
Reacting on a link change inside the interrupt handler is plain crazy,
...
as this involves some long delays like eeprom reading, etc.
Need to snooze() there, and this moved this into a separate thread.
Obviously, the FreeBSD driver isn't doing prober locking yet, so
it's not really save. But it's the correct way to do it, and it
doesn't crash. Inside the interrupt handler it did crash when reconnecting the cable...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7393 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:09:50 +00:00
beveloper
b8708997c5
the add_timer() function does panic, also it would call the hook in interrupt context, both it not acceptable. Commented it out
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7392 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 23:05:14 +00:00
beveloper
f8ce319207
removed some usec_delay() with spin(), since these functions are used inside the interrupt handler
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7391 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:55:46 +00:00
beveloper
2ec4faf00a
Removed device probing, it's now in driver.c
...
PCI id table, em_probe() and em_shutdown() are now gone.
Changed interrupt handler to use the BeOS calling convention, this avoid putting a wrapper around it.
em_attach() and em_detach() no longer link the adapter struct into a list.
When PCI io port access is configured, make sure that io address decoding is enabled in the PCI configuration.
replaced some offsetof() macros with #defiens to avoid importing all these structs.
Moved sysctl stuff into a #if 0 #endif wrapper.
Removed #include of FreeBSD header files.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7390 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:48:04 +00:00
Michael Phipps
f141dd5709
Re-styled and (hopefully) finalized.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7389 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:41:30 +00:00
beveloper
5f1aaa70ce
added some BeOS compatiblity stuff for settings up resources, PCI access, Interrupt handling, etc...
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7388 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:26:31 +00:00
beveloper
4543b62738
updated to most recent version
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7387 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:13:09 +00:00
beveloper
6acce18557
added phy configuration and some documentation
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7386 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:08:18 +00:00
beveloper
eeb57e873c
replaced LOG with TRACE
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7385 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 22:04:31 +00:00
beveloper
4ade280af9
added a lot of register bits and register offsets, all taken from the documentation
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7384 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 21:57:20 +00:00
beveloper
38f15423db
added info texts, init_hardware() now searches for hardware, replaced LOG with TRACE
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7383 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 21:53:42 +00:00
beveloper
c376689374
Removed REG*() macros and replaced them with read*() write*() macros.
...
Added chipset configuration, phy access, tx and rx interrupt handling, read and write hooks. Nearly working
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7382 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 21:50:29 +00:00
beveloper
45f9110d5c
added TRACE and ERROR macro, removed LOG macro
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7381 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 21:42:05 +00:00
beveloper
d5c64db1c5
First version of the:
...
Realtek RTL8169 Family Gigabit Ethernet Driver
Very basic, does only detection of the card and sets up some buffer descriptors.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7380 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 20:12:18 +00:00
beveloper
cf3d356127
Unfortunately, the original via-rhine driver is buggy and may hang during high traffic transfers.
...
These changes have been made by YellowTab and have been contributed to OpenBeOS.
While it might not fix every issue, things should be much better and more stable now.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7379 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 19:34:04 +00:00
beveloper
e11301109a
A BeOS driver for the VIA Rhine chipset, written by Richard Houle.
...
Released under the BSD license.
===========================================
From: "Richard Houle" <richard.houle@sand.com>
Subject: RE: License question regarding beos via rhine driver.
Date: Thu, 1 Apr 2004 08:48:02 -0500
Whoa. You talking about very old stuff. I don't even know if I kept a copy
of that source code... If you have a copy of it, then you can do what you
want. I don't have any objections or restrictions.
For the license question, the driver was directly inspired by the FreeBSD
driver's source code. Therefore, It's a BSD License.
Richard Houle
===========================================
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7378 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 19:17:53 +00:00
beveloper
6d0dfa0f7e
FreeBSD Driver for the Intel(R) PRO/1000 Family of Adapters
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7377 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 18:59:33 +00:00
Rudolf Cornelissen
fb0e0c889e
added move_overlay() for virtualscreens
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7376 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 17:34:01 +00:00
Rudolf Cornelissen
ac83e70ce5
added move_overlay() for virtualscreens
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7375 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 16:17:24 +00:00
Rudolf Cornelissen
f1f5c0d05a
fixed compiler warning
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7374 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 14:26:37 +00:00
Rudolf Cornelissen
45a4e26e92
another modelist update regarding panels
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7373 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 14:21:01 +00:00
Axel Dörfler
5685273f87
Now maintains the private libroot variable "_single_threaded".
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7372 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:44:12 +00:00
Axel Dörfler
e304a7fd39
Minor cleanup, no longer includes BSD's stdio/local.h
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7370 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:32:12 +00:00
Axel Dörfler
f1e764a7e7
No longer uses fgetln() - that call is not part of the POSIX specs, and is
...
not supported by the GLIBC stdio that we now have.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7369 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:28:48 +00:00
Axel Dörfler
ee70fb4fed
Added glibc stuff to the build.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7368 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:27:14 +00:00
Axel Dörfler
e7620319a4
Now links against GNU's stdio/libio instead of BSD's for binary compatibility with BeOS.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7365 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:19:01 +00:00
Axel Dörfler
0490efc6ff
No longer compiles the BSD stdio files (we're using GNU's stdio now for compatibility).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7364 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 12:18:05 +00:00
Axel Dörfler
003be99349
Added missing header.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7361 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 09:21:58 +00:00
Axel Dörfler
cda9457af2
Enable the stdio-common path.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7360 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 08:54:27 +00:00
Rudolf Cornelissen
65d3e07df2
sorted modelist for panels
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7359 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 07:28:34 +00:00
Rudolf Cornelissen
682c6e4a07
sorted modelist for panel native modes
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7358 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 07:23:04 +00:00
Axel Dörfler
b9523fa3ef
Wrote a simple tool to copy files to a BFS image from a shell. Internally,
...
it uses the fs_shell offerings to provide that functionality.
This tool allows to overcome the BeOS cache bug that happens as soon as you
mount a file system image; when you write the files onto an image using this
tool, you will be able to use it in Bochs (or other such uses) directly
without a reboot.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7357 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-03 00:00:57 +00:00
Axel Dörfler
b166160684
Our BSD stdio now has snprintf(), too, sorry for the inconvenience.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7355 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 23:36:03 +00:00
Axel Dörfler
203849cc49
Fixed warnings about possibly non-initialized variables.
...
Fixed a possible non-crash (it OpenBeOS, addresses below 0x80000000 are valid
user memory).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7354 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 23:20:15 +00:00
Axel Dörfler
743c3cceb9
The BeOS cache will no longer be turned off in case of a mounted image when
...
NO_FILE_UNCACHED_IO is defined at compile time.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7353 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 22:58:15 +00:00
Axel Dörfler
1bf27bb166
Removed no longer needed files from the Jamfile (they've never been part of the repository anyway).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7352 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 17:05:51 +00:00
Axel Dörfler
b80d229ec2
Managed to compile all other needed files from the main device manager.
...
Added all of them - module_loader.c and boot_hack.c won't be needed anymore.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7351 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 17:04:25 +00:00
Rudolf Cornelissen
4a3cf87482
modified panel modelines to be placed sorted in list
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7350 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 13:15:08 +00:00
Rudolf Cornelissen
63b94c104e
fixed secondary head specs (nview)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7349 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 12:18:19 +00:00
Rudolf Cornelissen
49e02c1862
fixed secondary head specs (nview)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7348 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-05-02 12:12:55 +00:00
Rudolf Cornelissen
14787e6d3a
important testrelease with panel DPMS programming disabled
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7347 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-30 20:33:48 +00:00
Rudolf Cornelissen
22ffe8b5c8
important testrelease with panel DPMS programming disabled
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7346 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-30 20:22:24 +00:00
Axel Dörfler
fe01b8fa14
Start of the integration of Thomas' pnp_manager (which is now called device_manager).
...
Nothing is tested right now, and it's not yet complete, but it's changed so that
it does compile in our tree (and looks a bit more like the other files, too).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7345 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-30 16:42:58 +00:00
Rudolf Cornelissen
8addb7c3d8
doc-update on some bits and pieces for TVout and panel use
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7344 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-29 12:40:29 +00:00
Axel Dörfler
511252a157
AddLink() added the link to the list of mounted volumes instead of the list
...
of links - that could have possibly hidden the boot volume under certain
circumstances. Thanks to Sean O'Brien for pointing this out.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7343 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-28 23:57:47 +00:00
Axel Dörfler
a44e28cc02
Fixed a possible buffer overflow condition in vfs_get_module_path().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7342 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-28 11:20:19 +00:00
Axel Dörfler
1802569c68
Removed the amount of warnings we get.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7341 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:53:59 +00:00
Axel Dörfler
9e2f757a6b
Unbuffered stdin/stdout the hard way - I'd guess this should be set to
...
buffered and determined at runtime if not (i.e. via isatty()) - but that
doesn't seem work at this time.
Must revisit later on!
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7340 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:52:55 +00:00
Axel Dörfler
d68b82804a
Removed definition of internal_function - unfortunately, I don't remember why I did that, but lets hope for the best.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7339 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:51:09 +00:00
Axel Dörfler
0bc86489bb
Separated removed (via preprocessor) sections.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7338 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:49:46 +00:00
Axel Dörfler
3e9b495a0d
Added the real stdio_lim.h contents.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7337 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:48:29 +00:00
Axel Dörfler
bb72477637
Sure it can be compiled without optimizations...
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7336 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:47:22 +00:00
Axel Dörfler
83375f1002
Removed unneeded exports.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7335 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:46:14 +00:00
beveloper
7164993bd6
Removed binaries from source tree. They shouldn't be here
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7334 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 23:39:08 +00:00
Rudolf Cornelissen
ed391aba66
panel DPMS update: now works on NV28 and NV34, still not ready yet though.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7333 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 19:52:06 +00:00
Axel Dörfler
86f34490f8
Simple R5 style pwd function implementation, courtesy of Eli Green.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7332 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 18:08:20 +00:00
Axel Dörfler
caa910df64
Changed some function return codes to return a status_t where appropriate.
...
Removed all old NewOS error codes.
Cleaned up the includes a bit.
Now prints out a list of preloaded images.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7331 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 11:55:31 +00:00
Axel Dörfler
192f207c78
Absolutely didn't like negative values for tm_wday and tm_mon before.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7327 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 00:50:01 +00:00
Axel Dörfler
50b3e5d4ce
Implemented asctime() and asctime_r().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7326 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 00:42:05 +00:00
Axel Dörfler
374d175555
Don't hide a possibly buggy caller.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7325 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-27 00:12:08 +00:00
Matthew Wilber
7fb3685ba6
Fixed low-depth grayscale issue, PNGTranslator can now read grayscale PNG images that are less than 8 bpp
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7324 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 23:09:19 +00:00
Matthew Wilber
1b56ef303a
Removed "unsupported images" test, as those images are now supported by the PNGTranslator. Also, removed the folder from the image paths to reduce redundancy and improve readability
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7323 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 23:07:29 +00:00
Axel Dörfler
130279a5bb
Added a ToDo item in BVolume::SetName().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7322 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 22:44:22 +00:00
Axel Dörfler
ef44862bfd
Now creates the usual links /bin, /tmp, /var, /system, ...
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7321 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 21:46:01 +00:00
Axel Dörfler
52b6744e8d
bootfs now implements the read_fs_info() hook - it mostly reports a volume
...
name ("OpenBeOS").
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7320 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 21:43:12 +00:00
Axel Dörfler
179fd09879
Removed the unused argument from module_init().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7319 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 21:04:06 +00:00
Axel Dörfler
4b5782942c
Removed the unused argument from module_init().
...
Implemented the possibility for built-in modules - they have to be listed
in sBuiltInModules in module.c to be registered automatically.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7318 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 21:02:27 +00:00
Axel Dörfler
04ba0ff394
Implemented support for the module_dependency structure.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7317 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 17:13:36 +00:00
Rudolf Cornelissen
b4f28c2631
added DPMS for panels interfaced to with external TMDS transmitters
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7315 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 13:57:51 +00:00
Rudolf Cornelissen
64c14e7e31
updated head sel code for NV11 special treatment
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7314 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-26 08:29:11 +00:00
Philippe Houdoin
c6ee24f79e
Wrong headers path order, local headers should win over private.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7313 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 23:35:40 +00:00
Philippe Houdoin
f37d5d3cdd
Ooops, -nodefaultlibs means no libroot.so link by default!
...
Add it explicitly now.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7312 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 23:22:25 +00:00
Philippe Houdoin
c898b9b707
Should not be linked against R5's libnet.so.
...
Move ISC-specific headers to private/net, including non-POSIX headers
required by ISC headers...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7308 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 22:45:42 +00:00
Philippe Houdoin
4a87916403
Should not be liking against R5 libnet.so!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7307 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 22:21:38 +00:00
Rudolf Cornelissen
59d5d4fb51
added NV11 output matrix setup
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7306 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 17:31:39 +00:00
Waldemar Kornewald
38737ad1b1
Just changed the libs to link against our private libsocket.so.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7305 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-25 10:38:18 +00:00
Rudolf Cornelissen
fe40131d4d
output devs/heads matrix setup added (NV11 not ready yet)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7303 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-24 14:41:54 +00:00
Rudolf Cornelissen
e7c91d6738
output devs/heads matrix setup added (NV11 not ready yet)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7302 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-24 14:35:59 +00:00
Matthew Wilber
e497624c0c
Added test to make certain PNGTranslator handles unsupported grayscale images properly
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7301 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-24 13:35:55 +00:00
Matthew Wilber
efbdb56bb0
Added comments to clarify transparency features of PNG images
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7300 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-23 21:48:17 +00:00
Matthew Wilber
5de6376dca
Initial check in for PNGTranslator tests
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7299 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-23 21:46:32 +00:00
Matthew Wilber
cc0dc2a277
Added PNGTranslator tests
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7298 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-23 21:45:38 +00:00
Rudolf Cornelissen
06f4c4397d
analog output switching updates: not ready yet...
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7297 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 20:11:04 +00:00
Rudolf Cornelissen
30f7642281
driver works nicely with virtualized head setup now!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7296 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 14:41:39 +00:00
Rudolf Cornelissen
0669fe20bd
added virtualized CRTC access with it's advantages
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7295 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 08:41:03 +00:00
Axel Dörfler
3a4a20a09e
Updated to match general boot loader changes.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7294 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 01:13:20 +00:00
Axel Dörfler
3004a40b85
address_range is now called addr_range (again, to let the structure and the
...
typedef name match).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7293 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 01:06:01 +00:00
Axel Dörfler
90323acc2d
Added boot_loader.ld file (same as stage2.ld for ppc).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7292 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-22 00:53:55 +00:00
Axel Dörfler
b747c3b791
Updated to match the changes in the boot loader.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7291 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 22:58:02 +00:00
Axel Dörfler
9fac193453
Partially implemented get_system_info(), courtesy of Jack Burton.
...
Added system_info.c to the build.
Added stats support functions to sems & ports.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7290 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 22:57:39 +00:00
Axel Dörfler
e08a79330a
Renamed systeminfo.c into system_info.c
...
Added syscall for _kern_get_system_info().
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7288 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 22:41:00 +00:00
Jérôme Duval
62b323538c
Devices working a bit now
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7287 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 18:55:56 +00:00
Axel Dörfler
bbf495f47d
map_page() will now be a bit more specific when it complains about an
...
invalid page.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7286 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 18:45:21 +00:00
Axel Dörfler
8d35b1a200
platform_start_kernel() now prints out the kernel entry point instead of
...
the address of the kernel_args structure.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7285 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 11:11:45 +00:00
Axel Dörfler
4eedc697c3
platform_get_boot_partition() will now also get the boot device as parameter.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7284 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 11:10:32 +00:00
Axel Dörfler
4c03f90f63
Now correctly translates the partition block offset into a byte offset.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7283 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 11:09:33 +00:00
Axel Dörfler
fbe5e77d0b
Added a simple second heap that will survive the switch to the kernel.
...
elf_load_image() now uses this heap for the preloaded_image structures.
Moved gKernelArgs and gKernelEntry to different files.
Improved enabling debug output (it can now be activated by a makefile, too)
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7281 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 02:32:36 +00:00
Axel Dörfler
d8023a2fc5
Fills in the required kernel args for the loaded kernel image.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7280 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 01:34:47 +00:00
Axel Dörfler
6ef64f7451
elf_load_image() now also saves the size of the dynamic section.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7279 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 01:33:44 +00:00
Axel Dörfler
8af4cf5fba
Replaced addr with addr_t.
...
Some minor other cleanups.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7276 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 01:28:40 +00:00
Axel Dörfler
185df3d6bd
Added a comment about why we are copying the passed in kernel args.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7274 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 01:25:23 +00:00
Matthew Wilber
85eea08ac9
decreased whitespace between files, modified error message text
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7273 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 00:35:57 +00:00
Matthew Wilber
e2ed67d283
removed debugger call
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7272 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 00:08:28 +00:00
Matthew Wilber
1c47da1361
Initial check in for pnginfo, command line program for displaying info about PNG image files
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7271 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 00:05:21 +00:00
Axel Dörfler
822757438d
No longer uses the local ka at 0x100000 but the global gKernelArgs structure.
...
The virtual/physical allocated ranges are now correctly filled in mmu_init_for_kernel(),
and no longer too early.
Now allocates a kernel stack of 8192 bytes.
Added some temporary fillers for the kernel args.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7270 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 00:04:37 +00:00
Matthew Wilber
7678994136
Added pnginfo tool
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7269 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-21 00:03:34 +00:00
Axel Dörfler
ffcff6e28c
Added platform_start_kernel() function.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7268 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 23:52:17 +00:00
Axel Dörfler
c93599a8ae
Replaced addr with addr_t.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7267 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 23:47:52 +00:00
Axel Dörfler
7b1a988f65
Fixed a warning due to the change in elf_priv.h
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7266 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 23:46:39 +00:00
Axel Dörfler
50f3983035
Added gKernelEntry variable; it's now set in load_kernel().
...
Removed start_kernel() function - it's now replaced by the platform_start_kernel()
call.
Fixed the kernel add-on boot module search path.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7265 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 23:45:32 +00:00
Matthew Wilber
9f33f8e014
Disabled support for grayscale images with bit depths less than 8. This is because libpng does not support these images when it does gray to RGB conversion. Will need to enhance libpng or add workarounds to PNGTranslator to fix this issue.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7260 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 19:59:10 +00:00
Jérôme Duval
da766ff5ee
Should fix a crash when canceling image selection with an empty image list.
...
Thanks to murai for this one
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7259 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 07:21:18 +00:00
Michael Phipps
775cef0314
Final changes for ScreenSaver Preferences app
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7258 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 02:06:39 +00:00
Michael Phipps
048f424d11
Last round of functionality changes.
...
"Add" and "test" now work. Be warned - without the input server addon running (and maybe even with), testing will cause the ScreenSaver to run but not to turn off. The way out of this is to alt-f# to a different workspace and kill "OpenBeOS ScreenSaver".
As far as I know, all functionality now in place and working properly. Needs a good workout.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7257 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 02:05:24 +00:00
Axel Dörfler
730036e22e
Improved debug output.
...
start_kernel() now panics, so that we don't run through (since it doesn't
actually jump to the kernel yet).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7256 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:36:12 +00:00
Axel Dörfler
f7fced6cf5
Slightly improved debug output.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7255 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:34:21 +00:00
Axel Dörfler
276c009500
Moved the platform region and heap functions to mmu.cpp.
...
The heap will now no longer be mapped in kernel space, but will be placed
at a fixed address (0x110000 - former start of free physical memory).
platform_allocate_region() is now implemented and calls mmu_allocate().
mmu_allocate() now supports mapping to a predefined virtual address
to be able to load the kernel correctly (and only for that).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7254 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:31:20 +00:00
Axel Dörfler
0f87a64b54
Add support for the boot partition offset as provided by the BFS boot block.
...
Now, platform_get_boot_partition() will work correctly.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7253 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:26:56 +00:00
Axel Dörfler
cdc8d6b6f5
The source files may now include the boot/partitions.h header.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7252 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:21:42 +00:00
Axel Dörfler
c8baeaf6cf
Added support for the boot partition offset as provided by the BFS boot block.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7251 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-20 01:20:43 +00:00
Axel Dörfler
9fd7586724
gBootDriveID is now uint8, no longer uint16.
...
Now prints out a comment if LBA access doesn't work (since CHS access is not yet implemented).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7250 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 23:33:23 +00:00
Axel Dörfler
f52302c408
Actually, one byte is enough for gBIOSDriveID - it only has to store %dl, not %dx.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7249 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 23:31:53 +00:00
Axel Dörfler
502a70f884
Implemented LBA drive access using the BIOS. The boot device is correctly
...
published, and can be accessed as needed.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7248 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 23:14:05 +00:00
Axel Dörfler
7ca2763dc3
Now uses the kExtraSegmentScratch constant rather than a direct address.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7247 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 22:43:04 +00:00
Axel Dörfler
cc551468f8
Added some constants that define scratch buffers in the data and extra
...
segment that can be used for BIOS calls.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7246 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 22:38:30 +00:00
Axel Dörfler
6ed14d8c59
Added a global variable gBootDriveID where %dl is stored to.
...
Moved the data section closer to the end of the 1024 bytes of the boot
block - the region before is reused as scratch buffer in the real mode
data segment.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7245 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 22:36:13 +00:00
Axel Dörfler
c2cb9079b5
Fixed a warning with debug turned on.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7244 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 21:58:43 +00:00
Axel Dörfler
acfef65c84
Fixed a bug that would rescan the boot partition in mount_file_systems() in
...
case it couldn't be used for booting (lack of a kernel or whatever).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7243 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 21:57:50 +00:00
Rudolf Cornelissen
ccfb6b3711
more logging, removed paneldetection bug
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7242 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 13:57:31 +00:00
Axel Dörfler
a7226c0a48
The boot loader now uses the boot_loader.ld linking script instead of
...
the stage2.ld script (which is now only used by the old boot mechanism).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7241 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 02:23:50 +00:00
Axel Dörfler
3796dbef26
Added the new files to the build, and implemented a real startup.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7240 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 01:57:29 +00:00
Axel Dörfler
b2f8da6214
Added prototype for the (currently unused) mmu_init_for_kernel() function.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7239 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 01:56:36 +00:00
Axel Dörfler
95aa3fbf11
MMU functions and initialization for the boot loader.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7238 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 01:50:26 +00:00
Axel Dörfler
487cc516ec
Register %es was not properly set from the bios_regs structure
...
(since switch_to_real_mode() overwrites %es).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7237 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 01:31:19 +00:00
Axel Dörfler
65daec27d1
Added a definition for the carry flag.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7236 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 01:30:13 +00:00
Axel Dörfler
a8242cca9c
Added a new linker script for our boot loader (a.k.a. zbeos in the BeOS world).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7235 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 00:05:32 +00:00
Axel Dörfler
d2e0469de4
Verified A20 gate BIOS call values with Ralf Brown's interrupt list - 0x2401/2
...
was already correct, and my other source was wrong about it.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7234 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-19 00:00:53 +00:00
Axel Dörfler
46df41d103
Implemented call_bios() function that is called from protected mode.
...
It switches to real mode for execution of the BIOS interrupt; it's really
only intended for the boot loader.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7233 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 23:58:26 +00:00
Axel Dörfler
1e56fb4aeb
The "ax" code I was using for the A20 gate stuff was obviously wrong; but
...
both Bochs and my real computer seem to know it anyway, so it's untested.
The real mode segment descriptors now start at 0x10000, because the code
is loaded there. Added an additional stack segment descriptor to be able
to use a stack below 0x10000.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7232 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 22:07:41 +00:00
Waldemar Kornewald
0ddbc23a4e
Added _res_resultcodes for improved BONE compatibility.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7230 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 13:00:44 +00:00
Waldemar Kornewald
5f09d484a7
Changed to link against our libbind.so and libsocket.so.
...
Now using correct shutdown constants.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7229 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 12:49:41 +00:00
Waldemar Kornewald
068bd8517e
Now using correct shutdown() constants.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7228 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 12:47:52 +00:00
Waldemar Kornewald
58a1abc4d6
Added missing functions.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7226 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-18 12:42:52 +00:00
shatty
035823f1e2
link against our libs
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7225 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-17 04:08:25 +00:00
DarkWyrm
da08bdd09d
Checkin for Caz (without pain, even!) which adds rudimentary DrawBitmap support
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7223 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-16 17:52:31 +00:00
Stefano Ceccherini
8af87c1dcc
Ok, last time (at least for today). 0 is a valid fd number
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7222 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-16 10:32:59 +00:00
Stefano Ceccherini
7d60c514f8
Last famous words... Corrected some issues pointed out by Axel
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-16 08:39:12 +00:00
Stefano Ceccherini
2e90a0fca0
Finally BSerialPort works !!
...
- Fixed I/O Error issue
- switched from sprintf to snprintf where appropriate
- added O_EXCL flag to open()
- added many TODO items (mostly for further investigation, the class should be complete)
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7220 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-16 06:24:59 +00:00
Stefano Ceccherini
df5ce07bff
Reverted last change since, as Axel pointed out, old version is "a bit" faster than the new one
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7219 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-16 06:21:42 +00:00
Waldemar Kornewald
a45c236cab
Added libbind and libsocket to the build.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7218 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:29:45 +00:00
Waldemar Kornewald
c0717c8cd7
Now linking against libbind and libsocket.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7217 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:22:24 +00:00
Waldemar Kornewald
5e36a68cb4
Fixed a warning.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7216 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:19:53 +00:00
Waldemar Kornewald
67bce78b48
Now linking against libbind instead of libnet.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7215 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:19:29 +00:00
Waldemar Kornewald
3016600192
Linking against libbind.so and libsocket.so.
...
There are linker warnings, but this is only due to the linker linking against the BeOS libs instead of our libs.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7214 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:17:54 +00:00
Waldemar Kornewald
a6b9eee2e1
Route did not use the shutdown() constants.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7213 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:16:33 +00:00
Waldemar Kornewald
5b3c100c86
DialOnDemand interfaces now connect, too, when using create.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7212 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:12:49 +00:00
Waldemar Kornewald
feb699f996
Fixed a bug that caused libbind.so to not resolve the name:
...
UDP did not set AF_INET in the sockaddr that is passed to recvfrom().
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7211 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:11:19 +00:00
Waldemar Kornewald
25ae6950d9
Changed the way IdleSince is updated.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7210 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:10:23 +00:00
Waldemar Kornewald
b7708e654a
Fixed DEBUG build.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7209 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:09:19 +00:00
Waldemar Kornewald
cdee6f9740
The DEBUG version dumps all packets to /boot/home/ipcpdebug.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7208 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:08:39 +00:00
Waldemar Kornewald
310eb63195
Updated shutdown() constants.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7207 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:07:42 +00:00
Waldemar Kornewald
0a628cf2fc
Nothing special. Just bringing the cvs version up-to-date with my private version.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7206 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:05:40 +00:00
Waldemar Kornewald
b155eedfb1
Checkin of BIND 9.2.3 (libbind.so).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7204 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 16:03:30 +00:00
Waldemar Kornewald
ffa9d4cce9
Now linking against libsocket.so.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7203 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 15:58:18 +00:00
Waldemar Kornewald
eda72d2688
Checked in our version of libsocket.so. When building for BONE use this command:
...
BONE_VERSION=1 jam
This will remove the select() function from libsocket.so.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7202 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 15:57:49 +00:00
Waldemar Kornewald
808485e453
libnet.so gets its own headers and is somewhat separated from the rest of the system to make it build fine.
...
Later we may decide to replace it with the libbind.so code.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7200 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-15 15:52:16 +00:00
Rudolf Cornelissen
a21a9460dc
removed warning.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7199 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 19:31:03 +00:00
Axel Dörfler
7ab45fdea5
Removed unused welcome message print code.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7198 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 16:54:42 +00:00
Axel Dörfler
b911d01e3d
Started the "shell" of the 2nd stage boot loader: it will enable the A20
...
gate, switch to protected mode, and will then jump to the platform dependent
loader initialization.
This is the start of the zbeos equivalent. It can already be executed
using the BFS boot block, but it cannot yet load itself from a floppy
like the original does.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7197 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 16:43:12 +00:00
Rudolf Cornelissen
9fd63d6d0e
added panel native mode to modelist: appears in Screenprefs now.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7196 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 08:12:43 +00:00
Niels Sascha Reedijk
7e2eb72f9a
Forgot this one too
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7195 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 06:28:56 +00:00
Niels Sascha Reedijk
3a02ba00db
Forgot this one
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7194 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 06:28:14 +00:00
Niels Sascha Reedijk
8b485af874
Summary: Continued work on hub initialisation
...
Keywords:
Patches applied:
* n.reedijk@planet.nl--nielx-2003/usb-busmanager--development--0.1--patch-5
Commit (in between) because of a switch of development-machines
* n.reedijk@planet.nl--nielx-2003/usb-busmanager--development--0.1--patch-6
Implement basic hub init
* n.reedijk@planet.nl--nielx-2003/usb-busmanager--development--0.1--patch-7
Implement a bit more of hub operation
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7193 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 06:27:32 +00:00
Niels Sascha Reedijk
df870398e8
Summary: Several changes to the root hub managing code
...
Keywords:
Patches applied:
* n.reedijk@planet.nl--nielx-2003/usb-busses--development--0.1--patch-4
Commit because of switch of development machines
* n.reedijk@planet.nl--nielx-2003/usb-busses--development--0.1--patch-5
Support for hub descriptors
* n.reedijk@planet.nl--nielx-2003/usb-busses--development--0.1--patch-6
Some more hub-management code
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7192 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-13 06:23:18 +00:00
Matthew Wilber
75b172d82d
Added SGITranslator to list of included files
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7191 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-10 19:58:09 +00:00
Rudolf Cornelissen
e8cdc01c2f
fixed error in paneldetection code on laptops... oops!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7190 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-09 19:21:56 +00:00
Stefano Ceccherini
6746ac963e
Some cleanups
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7189 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-09 11:12:13 +00:00
Rudolf Cornelissen
4709c2c813
added panel DPMS, updated detection code again (next iteration)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7186 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-08 19:55:13 +00:00
Waldemar Kornewald
ead04ffa5e
Our netstack works now! I used Vision and Net+ and it did not crash!!!
...
But I would not consider it stable.
Not tested on R5 net_server, only BONE (replaced BONE stack)!
Not compatible to BONE applications (you must use net_server apps or OBOS apps)!
Removed debug output from compat.c.
Fixed DNS bug (well, it's very hacky).
NOTE FOR BONE USERS: Uncomment the definition of BONE_VERSION in select.c!
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7185 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-08 13:06:00 +00:00
Waldemar Kornewald
64002c3e10
Thank you, Jack Burton, for telling me. Sorry. Did not checkin this file.
...
BTW, this is the first checkin with our own netstack and ppp implementation!
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7183 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-08 11:13:14 +00:00
Stefano Ceccherini
37b835fc06
This should fix the build for StyledEdit (we need to link against our libtextencodings.so). Note that, for StyledEdit to work, you need our libtextencodings.so either in a lib subfolder in the stylededit folder or in a system library directory.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7182 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-08 09:47:52 +00:00
Stefano Ceccherini
5cfa0d90a5
This should fix the build of jam under linux (and gcc 3.2.2). At least, it wasn't building here.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7181 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-08 07:59:47 +00:00
Stefano Ceccherini
8ffd36efd9
Stripped down Stars demo, to test DirectWindow
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7180 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-07 06:54:51 +00:00
Axel Dörfler
d018f3568f
Implemented rename_thread() and _user_rename_thread() (as pointed out by Jack Burton).
...
The syscall is not yet connected, and the code has not yet been tested.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7179 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 21:38:45 +00:00
Rudolf Cornelissen
72191e36d5
fixed cloning accelerant (sorry for 'intruding'..)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7177 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 18:21:26 +00:00
Rudolf Cornelissen
a5c5358d04
NM2070 pixelPLL restrictions updated
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7176 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 15:43:16 +00:00
Rudolf Cornelissen
1bc319cf1a
NM2070 pixelPLL restrictions updated
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7175 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 15:34:44 +00:00
Rudolf Cornelissen
34d8c1065d
fixed introduced regs cloning err on later cards
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7173 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 11:59:09 +00:00
Rudolf Cornelissen
1e54347520
fixed introduced regs cloning err on later cards
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7172 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 11:49:00 +00:00
Rudolf Cornelissen
77354258ed
various fixes tested on NM2070 (works now)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7171 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 09:37:21 +00:00
Rudolf Cornelissen
9eaaf46fba
various fixes tested on NM2070 (works now)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7170 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 09:25:31 +00:00
Stefano Ceccherini
f6dc8f8d6b
Hm, how come I removed that ?
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7169 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 08:40:08 +00:00
Stefano Ceccherini
fcb11fb123
Added a TODO reminder
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7168 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-06 08:12:18 +00:00
Waldemar Kornewald
ce0b86e9dd
* IPCP: I think this fixed the default route bug. At least it does not crash anymore.
...
* PPP stack: Fixed a bug that was introduced with the settings_tools change.
* Modem: Renamed "Interface" to "Port" and made it use any device (i.e.: a complete path must be supplied) and made it assume that the device is a port (termios.h API).
* Fixed a compilation warning.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7167 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-05 08:38:26 +00:00
Waldemar Kornewald
9fee39fd65
Some more usability work.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7166 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-05 08:34:07 +00:00
Stefano Ceccherini
88b0acbe91
Accidentally enabled debug in the latest commit.
...
The driver is fully working.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7165 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-05 07:46:30 +00:00
Stefano Ceccherini
85bbb77938
Almost completely rewritten the interrupt handler, some cleanups
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7164 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-05 07:06:26 +00:00
Adi Oanca
0029e79802
added a small but important comment
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7163 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 20:32:23 +00:00
Adi Oanca
24cbcac721
added support for moving with the help of the mouse.
...
added preliminary support for DEcorator buttons
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7162 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 20:30:20 +00:00
Adi Oanca
4251c0e465
added a memeber to know the WinBorder wich received the mouse down event
...
used that memeber to move the window arroud - with the help of the mouse
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7161 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 20:28:14 +00:00
Adi Oanca
9baac8ab74
small fix to make a WinBorder unhidden
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7160 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 20:26:17 +00:00
Adi Oanca
cf00cb08ee
fixed some bugs and workarrounds
...
added support for resolution change - in fact, fixed it
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7159 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 20:24:59 +00:00
Waldemar Kornewald
6ff76cdaf5
I had nearly forgotten this.
...
Changed some constants to match our style-guidelines.
Extended settings_tools to support modifying driver_settings/parameter structures (used by DialUpPreflet).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7157 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 12:06:37 +00:00
Waldemar Kornewald
8e0e1d0d3c
Axel told me the preflet is too complicated (thank you!). He was right, but I was a lazy programmer ;).
...
So here is the new version with much simpler dialogs.
The "Protocols" section is removed and all protocols add their own section. Protocols are now added/removed by changing the state of "Enabled" (a checkbox) in their section.
IPCP is named "TCP/IP", so everybody should know what can be found there.
All optional fields are marked as such ("(Optional)" to the right of each field).
Some labels were renamed (Dial -> Connect, etc.).
Added possibility to build a german version (I will ask some people around here if they find it easy to use).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7156 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-04 11:43:42 +00:00
beveloper
efbf097f79
bugfixed and renamed stream parameter to stream_id
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7155 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 21:42:11 +00:00
Jérôme Duval
ee0cded9b8
Auvia package rule
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7154 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 21:07:08 +00:00
beveloper
749003c7a0
another api change
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7153 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 20:04:19 +00:00
Adi Oanca
faf78a3ae0
removed fBackColor member
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7152 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:09:10 +00:00
Adi Oanca
950e269c8e
modified PrintToStream method
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7151 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:08:09 +00:00
Adi Oanca
009bee6435
nothing important . Really! :-)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7150 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:06:45 +00:00
Adi Oanca
3350f57dd7
modified the way BView data is received.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7149 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:05:49 +00:00
Adi Oanca
979f50e101
added a PrintToStream method
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7146 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:01:10 +00:00
Adi Oanca
51adcc8405
consted a few parameters
...
modified line functions - made them work
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7145 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 15:00:16 +00:00
Adi Oanca
7a71a81c84
modified the way top_view sends its data to app_server. It now send _all_ is data
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7144 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 14:57:39 +00:00
Adi Oanca
2d4c02036e
little fixes/updates for the coordinate conversion system
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7143 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 14:56:40 +00:00
Rudolf Cornelissen
91d2dcb1cb
small cleanup for registerarea clonefix
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7142 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-03 09:04:19 +00:00
beveloper
9a424d11b4
another attempt, but still broken
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7141 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-02 22:21:46 +00:00
shatty
9a9f64e114
use BFilePanel::SetSaveText which selects the filename
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7140 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-02 02:08:34 +00:00
beveloper
f733cb88d8
This really needs some more work
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7139 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 21:54:53 +00:00
Rudolf Cornelissen
11b36766de
removed register cloning bug in accelerant!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7138 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 20:17:27 +00:00
Rudolf Cornelissen
f515661720
removed register cloning bug in accelerant!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7137 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 20:07:22 +00:00
Waldemar Kornewald
60abfca048
Initial checkin of skeleton net_server.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7136 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 11:12:36 +00:00
Stefano Ceccherini
29ed6a85c3
This should fix the build of media_decoder
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7135 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 09:27:27 +00:00
Waldemar Kornewald
4823831392
Some "virtual"s were missing.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7134 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-04-01 08:57:07 +00:00
Waldemar Kornewald
06a4c46aec
Fixed the install-networking conflict between the route command and the route kernel module.
...
Thank you, Jerome and Ingo, for you help.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7133 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 11:44:37 +00:00
Waldemar Kornewald
0bc58c4961
Renamed some constant into PPP_ASK_BEFORE_DIALING (used by preflet and ppp_server (living in net_server or whatever)).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7132 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 11:44:33 +00:00
Waldemar Kornewald
7932407f25
Added "Extras" tab for setting dial-on-demand and auto-redial.
...
Some changes to the UI.
This preflet should finally be usable and support the most important features (devices, authenticators, protocols). Currently, there is only support for PPPoE, PAP, and IPCP.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7131 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 11:39:47 +00:00
Stefano Ceccherini
015dd75715
Fixed warnings, some cleanups
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7129 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 06:56:34 +00:00
Stefano Ceccherini
f1ca7ea60b
Some more test cases for BRegion
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7128 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 06:53:40 +00:00
Michael Phipps
f7f8f8fdd9
Major changes. File name changes, much work with code sharing to get
...
screensaver preview and module settings information correct. Mostly complete.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7127 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 00:35:20 +00:00
Michael Phipps
711c2f0843
Minor changes to support the code sharing effort
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7126 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 00:33:46 +00:00
Michael Phipps
7b526b9937
Some minor changes to promote code sharing.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7124 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-31 00:32:27 +00:00
beveloper
56494946b4
cookie is no longer a parameter for attach/detach
...
renamed drv_t to audio_drv_t
added utility functions to framework
added memory io memory mapping to driver
added io access to driver
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7123 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 22:10:01 +00:00
Axel Dörfler
2b75cca8d2
Added a dummy implementation of call_all_cpus() that will at least work on
...
single CPU machines.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7122 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 13:05:24 +00:00
Axel Dörfler
8fa03f6c41
Added a ToDo comment about how to correctly implement get_cpuid().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7121 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 13:02:49 +00:00
Waldemar Kornewald
0f197ce81a
Whew, nearly finished!
...
* Added TextRequestDialog (only asynchronous version because it is easier and the preflet should not block [it gets update messages from the kernel]).
* PPPoE: We now read the available interfaces from the kernel module, so the user does not have to know the exact name of the interface he wants to use. It can be chosen from a BMenuField. You can also enter any interface name if you select "Other: " from the menu.
* Small changes (e.g.: call MakeFocus(), etc.).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7120 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 11:06:40 +00:00
Waldemar Kornewald
53a2aa40d5
* libppp: [PPPManager]: Added ControlModule() method.
...
* PPPoE: fixed GET_INTERFACES ioctl()
* PPP interface: fixed path generation for controlling PPP modules (a '/' was missing).
And some minor changes I do not remember anymore.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7119 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 10:58:54 +00:00
Waldemar Kornewald
8a8389eed0
Fixed "route depends on itself" warning (added <bin> in front of route). I hope this is correct. Ingo? :)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7118 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 10:55:28 +00:00
Stefano Ceccherini
36eaad35e1
Accidentally removed Marcus name from the authors's list
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7113 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 08:05:42 +00:00
Stefano Ceccherini
272b2685ed
WindowScreen implemented by Caz and myself, fully working (well, at least with the pageflipper demo) on BeOS R5.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7112 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-30 07:29:49 +00:00
beveloper
ce9f8277a1
no longer free the cookie inside the driver
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7111 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 23:48:38 +00:00
beveloper
40d8df50ed
the cookie is now allocated by the framework
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7110 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 23:44:47 +00:00
beveloper
bbd6936229
the cookie is now allocated by the framework
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7109 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 23:43:00 +00:00
beveloper
0b67beb4a1
does no longer crash, calles attach and detach
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7108 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 23:15:02 +00:00
beveloper
0dac193921
something is wrong and does crash
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7107 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 22:58:03 +00:00
beveloper
2aef37bf20
more experimenting
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7106 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 21:45:14 +00:00
beveloper
717659810b
experimental
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7105 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 20:10:38 +00:00
beveloper
672b768fdf
experimental
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7104 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 20:02:14 +00:00
Rudolf Cornelissen
e67080742e
updated some panel stuff, added some new card ID's
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7103 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 16:09:25 +00:00
Axel Dörfler
0ca4e4b56d
NewOS read/write hooks return ssize_t, but on BeOS, they return status_t and
...
the number of bytes read/written in an argument. Until now, we had a buggy
mix between those two solutions. Courtesy of Jack Burton.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7102 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 12:41:32 +00:00
Axel Dörfler
264a5adff5
NewOS read/write hooks return ssize_t, but on BeOS, they return status_t and
...
the number of bytes read/written in an argument. Until now, we had a buggy
mix between those two solutions. Courtesy of Jack Burton.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7101 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 12:28:34 +00:00
Axel Dörfler
ac9d54bb91
Now actually sets the amount of bytes read when everything went okay (thanks
...
to Jack Burton for pointing this out).
No longer sets the length on error, since this value is not propagated to
the caller anyway in this case.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7099 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 10:37:42 +00:00
Stefano Ceccherini
684349b37a
Implemented link detection and speed autonegotiation
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7098 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-29 06:36:33 +00:00
Axel Dörfler
725c92923a
Fixed a warning.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7097 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 23:52:11 +00:00
Rudolf Cornelissen
dcd4e5937b
updated acc engine workspace size restrictions.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7096 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 20:38:15 +00:00
Rudolf Cornelissen
43ad155f45
updated acc engine workspace size restrictions.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7095 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 20:31:43 +00:00
Rudolf Cornelissen
b6e8c7e83d
finalized acc related stuff, did some tidbits, fixed cursor
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7094 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 16:12:26 +00:00
Rudolf Cornelissen
1c8f74d9e8
finalized acc related stuff, did some tidbits, fixed cursor.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7093 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 16:01:54 +00:00
Adi Oanca
be76d636d4
small fix
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7092 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:04:01 +00:00
Adi Oanca
1610897948
* rewritten big parts to blend with the new clipping code
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7091 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:03:34 +00:00
Adi Oanca
82cc45c032
* made the desturctor virtual
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7090 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:03:15 +00:00
Adi Oanca
cd916e88f6
* little fixes
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7089 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:02:53 +00:00
Adi Oanca
76f9576971
* added a temporaly method for constraining the clipping region.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7088 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:02:31 +00:00
Adi Oanca
47e76f9bba
* added 2 methods:...
...
* made one virtual
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7087 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:01:46 +00:00
Adi Oanca
8a725f55d1
* fixes for region rebuiding
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7086 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:01:27 +00:00
Adi Oanca
7f788bd639
* fixes to the redrawing code
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7085 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:01:08 +00:00
Adi Oanca
4b97b66984
* added a call to ServerWindow::Init();
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7084 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:00:48 +00:00
Adi Oanca
c125512504
* lots of fixes mainly to region rebuilding, because WinBorder and is a bit special Layer subclass.
...
* clarified Layer creating process.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7083 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:00:31 +00:00
Adi Oanca
293c278ef5
* added 3 methods for more clearty in Layer buiding process, also for easier attribute seting.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7082 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 15:00:08 +00:00
Adi Oanca
5e9ce9fe93
* added/implemented void ViewDriver::ConstrainClippingRegion(BRegion *reg) defined by DisplayDriver.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7081 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 14:59:11 +00:00
Adi Oanca
e9c79f8def
* fixes
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7080 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 14:58:39 +00:00
Adi Oanca
9599477715
* made RebuildFullREgion virtual
...
* added some friends... temporaly
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7079 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 14:58:19 +00:00
Adi Oanca
a7d9589ff2
* Modified a little the protocol for AS_LAYER_CREATE_ROOT message. Replaced PortLink with BSession. Was
...
necessary!
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7078 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-28 14:49:12 +00:00
Rudolf Cornelissen
338c454351
massive acc speedup, removed fill error, hardcursor OK
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7075 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-27 17:10:08 +00:00
Michael Pfeiffer
62a4ea7ebc
Moved PrintProcess.cpp to shared folder
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7074 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-27 07:12:08 +00:00
Michael Pfeiffer
edd4c1eef7
Printer supports copy command.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7073 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-27 07:09:25 +00:00
Michael Pfeiffer
2c973bd1fc
Implemented copy number of pages for printers that do not support page copy command. Check if PrintToFile dialog was canceled and return without an error.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7072 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-27 07:08:38 +00:00
Michael Pfeiffer
d3befe5f8a
Return without error if user closes window.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7071 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-27 07:07:31 +00:00
Waldemar Kornewald
1e695afb41
Fixes for the Deselect() bug in BListView (at least I think this is a bug):
...
When the BListView is not attached to any window Deselect() does not work. So, if you remove an item that is selected the BListView's selection index is not updated and thus it results in a crash when it is attached again. This happens when you use a BTabView and change the information of the BListView while its tab is inactive.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7070 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-26 13:43:14 +00:00
Waldemar Kornewald
527eb29edb
Added IPCP protocol.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7069 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-26 11:58:37 +00:00
Waldemar Kornewald
55c8f8c370
Fixed protocol handling.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7068 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-26 11:57:50 +00:00
Waldemar Kornewald
b8f24e8376
Sorry, I did not commit this change (sharing the configuration values between the IPCP kernel and DialUpPreflet modules).
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7067 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-26 11:27:50 +00:00
shadow303
0f39928deb
Add radeon (missed checking this in a while ago)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7066 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-26 00:30:03 +00:00
Waldemar Kornewald
3dbb75a676
Added the Protocols tab. Could not test it because currently there is no IPCP addon.
...
Replaced direct identifier specification for BMessage with #define'd values, so typos cannot arise.
Moved some functions into InterfaceUtils so they are available for all add-ons (this will later become part of a static library for the DialUpAddon API).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7065 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-25 11:59:34 +00:00
DarkWyrm
a1a4146fcc
Re-replaced stripped-out functions. Apparently, Caz was working from an old version. Oops. Going back to recovery mode. :P
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7064 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-24 23:06:50 +00:00
Rudolf Cornelissen
7e2c8d2a0d
full 2D acc works on NM2097 and NM2160 (still with softcursor)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7062 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 19:39:02 +00:00
Axel Dörfler
1ed3192432
find_command() did not return NULL if it couldn't find a command, courtesy
...
of Jack Burton.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7061 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 15:42:39 +00:00
Axel Dörfler
56c7aeaee8
Fixed a typo, thanks to Jack Burton for pointing this out.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7060 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 15:37:48 +00:00
Stefano Ceccherini
a88479e2a9
Should fix the build of libgame.so. It was linking against R5 libmedia.so
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7059 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 15:19:03 +00:00
Stefano Ceccherini
bfc3bb1838
Finished SetFullscreen() implementation
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7058 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 07:19:07 +00:00
Axel Dörfler
cdae4b7cf1
Added panic()/dprintf() calls to the x86 bootloader bindings.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7057 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-23 01:03:24 +00:00
DarkWyrm
38592e0909
Checkin for Caz Jones which implements functions which contact the input server
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7056 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 23:14:22 +00:00
Axel Dörfler
0143eff357
Read-only state was not properly initialized.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7055 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 23:07:20 +00:00
Rudolf Cornelissen
4f567623c0
screen_to_screen blit works! (if softcursor used, NM2097 and NM2160)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7054 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 19:32:25 +00:00
Stefano Ceccherini
09ea309293
A working SetFullscreen() implementation, courthesy of Caz. Added a comment. Enlarged the license section.
...
More to come.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7051 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 14:23:50 +00:00
Rudolf Cornelissen
b3f6ef9515
NM2097 and NM2160 screen_to_screen blit should now work
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7049 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 13:54:13 +00:00
Rudolf Cornelissen
8e429d9795
NM2097 and NM2160 screen_to_screen blit should now work
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7048 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-22 13:49:12 +00:00
Rudolf Cornelissen
b1c0cf3414
updates for NM2097 and NM2160 acc (not ready yet)
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7046 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-21 21:30:14 +00:00
Rudolf Cornelissen
2e66094a63
updated engine management code.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7045 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 21:08:10 +00:00
Rudolf Cornelissen
675ab991b5
updated engine management code
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7044 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 20:51:37 +00:00
Rudolf Cornelissen
67aa755ba1
minor detail comment added
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7043 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 20:47:39 +00:00
Rudolf Cornelissen
fc6c22f1af
updated engine management code
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7042 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 20:42:12 +00:00
Michael Phipps
0eb03b604f
Removed Thread and Prefs, since they should now be in libscreensaver
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7041 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 19:05:26 +00:00
Michael Phipps
a512f86017
SSthread is obsolete. The others were promoted to libscreensaver.so.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7040 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 18:59:22 +00:00
Michael Phipps
112c0c2389
Unpdates, fixes and promoted ScreenSaverPrefs.cpp and ScreenSaverThread.cpp
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7039 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-20 18:53:33 +00:00
Ingo Weinhold
0bc631db27
Added missing source files and fixed the reference to libscreensaver.so.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7036 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 23:49:50 +00:00
Ingo Weinhold
5bc810f76c
Added src/servers/screensaver to the include search paths, since there
...
lives the ScreenSaverPrefs.h header. The header should go to a place
somewhere under headers/private though!
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7035 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 23:48:47 +00:00
Michael Phipps
c171a52d8b
Rewritten from scratch to match the "screenblanker" style of R5.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7033 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 19:41:42 +00:00
Axel Dörfler
06c0f437a7
Added "\n" -> "\r\n" translation for console output, not yet tested.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7031 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 18:32:37 +00:00
Axel Dörfler
498a8e8be0
Now uses vsnprintf() instead of vsprintf() which makes the output safe.
...
Removed "\n" -> "\r\n" translation (it's now done in the platform dependent part).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7030 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 18:30:31 +00:00
Axel Dörfler
788d2b04ea
Implemented console output for x86 boot loader.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7029 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 18:28:26 +00:00
Jérôme Duval
5afca6b536
Added the bin command "release"
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7028 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-19 08:19:11 +00:00
Rudolf Cornelissen
8592d389a6
added DFP aspect correction centering, cutting and displaymode aspect checking
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7025 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 13:59:12 +00:00
Rudolf Cornelissen
a973fe9ed0
updated aspect correction programming: center, cutoff, and mode-checking added
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7024 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 13:46:42 +00:00
Jérôme Duval
16fd3794bb
Added the script zipgrep
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7023 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 09:05:37 +00:00
Jérôme Duval
56e682c242
Shell scripts and links for gzip are correctly built now.
...
is the LinkSharedOSLibs line needed ?
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7022 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 08:27:23 +00:00
Jérôme Duval
6c4f442063
Changes the destination folder when "same folder" is selected even when there is one already, thanks to MYOB
...
Enable expand buttons only when the destination folder is valid
Don't provide a destination folder for listing
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7021 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 08:24:46 +00:00
Jérôme Duval
91d1efffa5
Only changes current dir when a destination folder is provided and don't exit when no destination is provided
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7020 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 08:21:54 +00:00
Jérôme Duval
e6efcd0fdb
Now use the mimetype of the file linked and not the link itself
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7019 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 08:20:36 +00:00
Stefano Ceccherini
3d6ebe9645
Added a missing include
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7018 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 07:41:04 +00:00
Stefano Ceccherini
e2aecd091e
Some tests for _BWidthBuffer_
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7017 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-18 07:40:05 +00:00
Axel Dörfler
6e1d8b671a
Cleanup.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7012 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 15:30:43 +00:00
Axel Dörfler
0f00c4fff9
Renamed global variables to match our coding style guide.
...
Removed thread_kill_thread_nowait().
Renamed thread_init_percpu().
Minor cleanup.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7011 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 15:29:45 +00:00
Axel Dörfler
bd3f643494
Renamed thread_init_percpu() to thread_per_cpu_init().
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7010 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 15:28:08 +00:00
Axel Dörfler
0cec1c047b
No longer calls thread_kill_thread_nowait() but sends the signal directly
...
(because the former function doesn't exist anymore).
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7008 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 15:25:43 +00:00
Axel Dörfler
15edae152e
Completed find_thread() implementation, courtesy of Starr Kline.
...
Added some comments.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7007 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 15:08:36 +00:00
Jérôme Duval
1592b084a9
Added bzip2 1.0.2. Expander has now built in rules and icons for it.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7006 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 08:46:32 +00:00
Michael Phipps
d9e07e352f
Many changes and fixes. Includes the password window work. Everything now works in here AFAIK.
...
Some people have reported Jam issues - the build is trying to use Be's headers.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7005 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 03:43:30 +00:00
Axel Dörfler
a206c3746f
Lowered the thread priority boost on death.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7004 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-17 00:43:16 +00:00
Rudolf Cornelissen
c65998fa11
NV11 panel update; widescreen panel aspect programming added
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7003 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 11:15:30 +00:00
Jérôme Duval
81b52af807
Expander added
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7002 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 10:29:48 +00:00
Jérôme Duval
55a5a6bdfa
Initial checkin of the Expander replacement app.
...
Redone from scratch because we don't have Dan Lee's code.
Beta version. Testing is welcome.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7001 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 10:28:03 +00:00
shatty
a46dd4ec3e
add radeon to build
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7000 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 07:33:58 +00:00
Axel Dörfler
8e14887212
Moved some dprintf()s to use the TRACE() macro.
...
Also fixed compilation with tracing enabled.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6999 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 03:14:48 +00:00
Axel Dörfler
a9e1ba1d5b
Fixes due to the team/thread.h separation and minor header cleanup.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6998 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 02:53:41 +00:00
Axel Dörfler
974982d56d
Factored out two functions out of thread_exit() (in team.c).
...
Incorporated NewOS change 1930: sends the parent SIGCHLD if the team
goes away.
create_thread() now returns B_BAD_TEAM_ID when the team is in death state
instead of ERR_TASK_PROC_DELETED.
Cleaned headers.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6997 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 02:50:25 +00:00
Axel Dörfler
074af04cf2
Factored out two new functions (team_remove_team() and team_delete_team())
...
from thread_exit().
Removed team_remove_team_from_hash() as it's no longer necessary.
Also incorporated NewOS change 1930: maintain the parent/children lists.
Cleaned up the headers.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6996 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 02:46:28 +00:00
Axel Dörfler
b721e8fd26
Gained knowledge from NewOS change 1930 and fixed the sig_block_mask change
...
as already suggested in my earlier comment.
Added some comments.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6993 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-16 02:23:32 +00:00
beveloper
2fe87e7c58
Fixed handling of 0 byte large chunks.
...
Rewrote error checking during file parsing, parsing now aborts immediately after the first error.
Disabled all TRACEing, added ERROR fprintf for real errors.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6991 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-15 23:30:09 +00:00
beveloper
8bc2d39a23
Fixed broken disabling of realtime flags. Was reported by YellowTab, thanks!
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6990 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-15 23:02:30 +00:00
Stefano Ceccherini
7446a252ed
Fixed a crash when running beshare with our BTextView (thanks to Andrew Bachmann for reporting), though it's a bit hackish, added some printfs to TextView.cpp to help finding/fixing bugs, a small optimization to WidthBuffer. Should convert and commit WidthBuffer's tests to cppunit tests sooner or later.
...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6989 a95241bf-73f2-0310-859d-f6bbb57e9c96
2004-03-15 07:19:27 +00:00