Nice to see you committing, hto!
Regards,
Aleksey Bragin
On 02.11.2013 17:56, dgorbachev(a)svn.reactos.org wrote:
> Author: dgorbachev
> Date: Sat Nov 2 13:56:47 2013
> New Revision: 60832
>
> URL: http://svn.reactos.org/svn/reactos?rev=60832&view=rev
> Log:
> [CMAKE]
> Reduce the disk space needed to build ReactOS (disabled for LTCG builds - linker bug #15143).
>
> Modified:
> trunk/reactos/toolchain-gcc.cmake
>
Hello,
Let me invite you to the monthly status meeting taking place last
Thursday of this month, 31st of October, 19:00 UTC. Put that into your
calendars so you don't forget. That's the last day of this month too and
that's tomorrow!
IRC service will only be started shortly before the meeting. Your
participation passwords and server address will be emailed to you
shortly before the meeting starts, and they are going to be different
once again as they are not stored in any database. Hopefully it's not
much of inconvenience.
If someone still is not getting passwords sent before a meeting - please
email Pierre or Colin (depending who will handle this meeting) before
the meeting started to get one.
The agenda will be posted shortly before the meeting, suggestions are
welcome (send them to me shortly before the meeting starts).
Regards,
Aleksey Bragin
Hi,
North of Europa is facing a major storm. Currently, it is hitting Sweden
where it is really violent.
Unfortunately, some of our servers are there as well. Our datacenter has
been affected (likely power issue) and two servers are currently offline
and cannot be rebooted remotely.
Our local sysadmin cannot make a move to the datacenter following the
authorities recommandations to stay at home.
So far, the following parts of our infrastructure are offline:
-> Doxygen
-> cppcheck
-> ISO download
-> ISO upload
-> VMware testbots
As a side effect, I will take the Linux builder & KVM testbot offline
given it is impossible to upload any ISO at the moment.
We will do our best to get the infrastructure back online as fast as
possible.
We will keep you informed.
We are sorry for the caused inconvenience.
With my best regards,
--
Pierre Schweitzer<pierre at reactos.org>
System Administrator
ReactOS Foundation
How can I build and install ReactOS on a new computer?
Can I install to a USB stick or to a 1.2 GB IDE hard drive in a USB 2.0 hard-drive enclosure?
Main hard drive is Western Digital Green 3 TB, GPT-partitioned.
I would have to build from FreeBSD or less likely NetBSD or Linux.
I downloaded the installation ISO for ReactOS 0.3.15, but it failed to boot, also failed to boot on an old computer.
I already have subversion (svn), built from FreeBSD ports.
Tom
> [-- Type: multipart/alternative, Encoding: 7bit, Size: 3.0K --]
> Content-Type: multipart/alternative; boundary=001a11c3c7dccc447f04e913cb34
> Content-Type: text/plain; charset=UTF-8
> You can find ready-to-use builds of recent SVN revisions at:
> https://www.reactos.org/getbuilds
> If you don't see builds for the latest, use the arrows to go back until you
> find one that has files.
> You can NOT install ReactOS on a USB hard drive, though.
> If you do want to build from source regardless, you should look at RosBE,
> although I'm not sure if it works well in FreeBSD, since I build from
> Windows.
Thanks for response.
Linux and the BSDs are not so fussy about where they are installed on,
USB stick is OK.
But I remember DOS, Windows and OS/2 were fussy.
Do you use MinGW in Windows?
MinGW, subversion, ninja and GCC are all available in FreeBSD ports collection.
>From what I read, I think ReactOS might not get along with USB 3.0 and GPT,
hence the desire to use a USB stick.
FreeDOS also is difficult to install, many failed attempts on my computer
perhaps related to modern hardware.
FAT32 file system is not really good for making use of today's big hard drives.
But keeping up with NTFS is difficult because NTFS is a moving target (I believe).
I really feel more at home now with Linux and FreeBSD than with DOS, Windows or OS/2.
Tom
Hello.
Just nitpicking a bit:
>> -target_link_libraries(ntvdm softx86 softx87 fast486)
>> +target_link_libraries(ntvdm fast486)
>> add_importlibs(ntvdm msvcrt user32 gdi32 kernel32 ntdll)
>> -add_dependencies(ntvdm softx86 softx87)
>> +add_dependencies(ntvdm fast486)
The call to add_dependencies is useless here, as a call to target_link_libraries adds an implicit dependency.
Regards
Jérôme
Jim, this and your other patch can never happen. It's ListEntry that can be NULL, but Property will never be (in fact, it will be negative number). Also, ListEntry should never be NULL anyway, otherwise it means the list head is corrupted.
Containing record is just math...not a dereference.
--
Best regards,
Alex Ionescu
-----Original Message-----
From: ros-diffs-bounces(a)reactos.org [mailto:ros-diffs-bounces@reactos.org] On Behalf Of jimtabor(a)svn.reactos.org
Sent: Tuesday, October 15, 2013 3:17 PM
To: ros-diffs(a)reactos.org
Subject: [ros-diffs] [jimtabor] 60683: [Win32ss] - Prevent a potential kernel exception.
Author: jimtabor
Date: Tue Oct 15 22:16:31 2013
New Revision: 60683
URL: http://svn.reactos.org/svn/reactos?rev=60683&view=rev
Log:
[Win32ss]
- Prevent a potential kernel exception.
Modified:
trunk/reactos/win32ss/user/ntuser/prop.c
Modified: trunk/reactos/win32ss/user/ntuser/prop.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/prop.c…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/prop.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/prop.c [iso-8859-1] Tue Oct 15 22:16:31 2013
@@ -21,6 +21,7 @@
while (ListEntry != &Window->PropListHead)
{
Property = CONTAINING_RECORD(ListEntry, PROPERTY, PropListEntry);
+ if (!Property) break;
if (Property->Atom == Atom)
{
return(Property);
On 2013-10-16 00:14, jimtabor(a)svn.reactos.org wrote:
> URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/window…
> ==============================================================================
> --- trunk/reactos/win32ss/user/user32/windows/prop.c [iso-8859-1] (original)
> +++ trunk/reactos/win32ss/user/user32/windows/prop.c [iso-8859-1] Tue Oct 15 22:14:48 2013
> @@ -53,6 +53,7 @@
> for (i = 0; i < pWnd->PropListItems; i++ )
> {
> Property = CONTAINING_RECORD(ListEntry, PROPERTY, PropListEntry);
> + if (!Property) break;
> if (Property->Atom == Atom)
> {
> return(Property);
>
>
That can't happen unless the list is corrupt.
And even if the list contains a null pointer (which it's not supposed
to), ListEntry would be NULL, not Property.
Sorry
Sent from my Windows Phone
From: Aleksey Bragin
Sent: 14-10-2013 PM 02:41
To: ReactOS Development List
Subject: Re: [ros-dev] reactos.org is down
Z, don't take that too seriously
;-)
Regards,
Aleksey Bragin
On 14.10.2013 7:12, Zachary Gorden wrote:
> Please refrain from making demands of a non-profit, volunteer driven
> project. It's impolite bordering towards insulting to the people
> working on the project.
>
> On Sun, Oct 13, 2013 at 7:45 PM, Ameer Ali <ameerali.ma(a)gmail.com> wrote:
>> Again its happening....pls don't repeat..
>>
>> Sent from my Windows Phone
>> ________________________________
>> From: Pierre Schweitzer
>> Sent: 14-10-2013 AM 02:58
>> To: ros-dev(a)reactos.org
>> Subject: Re: [ros-dev] reactos.org is down
>>
>> We're back online.
>>
>> On 13/10/2013 22:51, Pierre Schweitzer wrote:
>>
>> The faulty server is being replaced at the moment.
>>
>> On 13/10/2013 19:52, Pierre Schweitzer wrote:
>>
>> Hi,
>>
>> this is known issue (which has been handled 13 minutes after it
>> happened - just for the record ;-)). Unfortunately, so far, it is not
>> going very well.
>>
>> This affects: www.reactos.org, jira.reactos.org, dev.reactos.org,
>> code.reactos.org, ns1.reactos.org (use NS2 for the moment).
>>
>> We're sorry for the caused inconvenience.
>>
>> With my best regards,
>> Pierre
>>
>> On 13/10/2013 18:20, ????????? wrote:
>>
>> reactos.org is down
>> --
>> ? ?????????? ???????????, ?????????.
>>
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
Good work buddies...
Sent from my Windows Phone
From: Aleksey Bragin
Sent: 09-10-2013 PM 06:37
To: ReactOS Development List
Subject: Re: [ros-dev] Branches status & cleanup
If he starts from the latter, then he would have more than enough money
to fund all ReactOS development and buy Microsoft Corp. :D
Regards,
Aleksey
On 09.10.2013 16:55, Hermès BÉLUSCA - MAÏTO wrote:
> Tip: order your priorities !!
>
> -----Message d'origine-----
> De : ros-dev-bounces(a)reactos.org [mailto:ros-dev-bounces@reactos.org] De la
> part de Timo Kreuzer
> Envoyé : mercredi 9 octobre 2013 11:08
> À : ReactOS Development List
> Objet : Re: [ros-dev] Branches status & cleanup
>
> Am 09.10.2013 10:18, schrieb Thomas Faber:
>> On 2013-10-07 23:03, Aleksey Bragin wrote:
>>> GSoC_2011
>>> Five subbranches. What's their status? Were they all merged?
>> - Claudiu's and mine are fully merged.
>> - According to SVN I took the explorer_new fixes from Andrew's into
>> trunk last year ... I'll recheck whether that was everything.
>> - Timo's is unmerged and has some unmet dependencies IIRC.
>> - Giannis merged most or all of his, but he should know best if there's
>> anything useful in there still.
> Please keep my GSoC branch, it contains code for the font engine rewrite,
> which is still WIP and I plan to continue on it after the DIB rewrite branch
> is finished. (And after I fixed PSEH3, implemented PSEH for C++ and CLANG,
> fixed a dozen Jira issues, rewrote Mm and Cc and found a cure for cancer.)
>
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
Again its happening....pls don't repeat..
Sent from my Windows Phone
------------------------------
From: Pierre Schweitzer
Sent: 14-10-2013 AM 02:58
To: ros-dev(a)reactos.org
Subject: Re: [ros-dev] reactos.org is down
We're back online.
On 13/10/2013 22:51, Pierre Schweitzer wrote:
The faulty server is being replaced at the moment.
On 13/10/2013 19:52, Pierre Schweitzer wrote:
Hi,
this is known issue (which has been handled 13 minutes after it
happened - just for the record ;-)). Unfortunately, so far, it is not
going very well.
This affects: www.reactos.org, jira.reactos.org,
dev.reactos.org,code.reactos.org, ns1.reactos.org (use NS2 for the
moment).
We're sorry for the caused inconvenience.
With my best regards,
Pierre
On 13/10/2013 18:20, ????????? wrote:
reactos.org is down
--
? ?????????? ???????????, ?????????.
_______________________________________________
Ros-dev mailing
listRos-dev@reactos.orghttp://www.reactos.org/mailman/listinfo/ros-dev
_______________________________________________
Ros-dev mailing
listRos-dev@reactos.orghttp://www.reactos.org/mailman/listinfo/ros-dev
_______________________________________________
Ros-dev mailing
listRos-dev@reactos.orghttp://www.reactos.org/mailman/listinfo/ros-dev
--
Pierre Schweitzer<pierre at reactos.org>
System Administrator
ReactOS Foundation
Hello!
I would like to inject more life into our branches and hence need to
remove as much dead bodies from that area as possible. And I need your
feedback!
Please comment on that list. like - needs to be merged, useless, could
be deleted.
aicom-hardware-fun
"Branch for my hardware support work and other stuff". Last commit 17th
of May, 2010. Bring back Cromwell as a temporary USB stack until
mjmartin finishes the new one, Implement missing storage stack drivers
(storport, ataport, etc), Work more on the PnP manager.
Obsolete?
aicom-network-branch
Last commit was 4th of August, 2011. Another branch for networking
fixes. "If someone wants to delete aicom-network-fixes, they are welcome to"
alex-network-branch
Last commit was 24th of December, 2006. Some parts are still not merged.
What a shame!
arty-newcc
New CC implementation by arty. It stays.
arty-stable
Arty - do you need it? No problem in keeping it, if you need it.
arwinss
Aleksey - do you need it? Yes I do!! :-)
audio-bringup
Johannes? Last commit 26 of April, 2011.
c++-bringup
Very promising name and just one commit by jgardou, 8th of March, 2012.
Jerome?
cmake-bringup
I think we switched to CMake already. Any reason to keep this branch?
dib_rewrite
Timo's great work.
GSoC_2011
Five subbranches. What's their status? Were they all merged?
icu4ros-bringup
Empty branch. Amine, would you comment whether it's necessary?
iut-mmc
Pierre?
jcatena-branch
MSVC work. Needed?
kd++
By Hermes. I think, it's needed.
lean-explorer
Lean explorer by Martin Fuchs. Last touched in 2006.
nocc
Special "nocc" cache manager. It stays.
nslookup
I guess lsuggs gave up on that. But the idea was nice.
ntvdm
We all know [TheFlash]. Stable progress. Good work.
nyadav-audio-branch
Last commit dates to year 2011. Nyadav?
olpc
One awesome Laptop Per one awesome Child. We can keep it a bit more for
historical reasons.
pierre-fsd
Pierre's presumably great work.
reactx
GreatLord's work on DirectX. Status unknown. Sylvain?
ros-amd64-bringup
Timo - is it still relevant, or did you already merge it in trunk?
ros-csrss
Last commit says "Ready for merging (TM) :)". ORLY? :-)
shell32_new-bringup
Mr. Mihail, you around? Anyone knows state of that work?
sspi-bringup
Samuel? What's with that branch?
tcp-rewrite-branch
LWIP. I think it's integrated into trunk long time ago? Last commit -
year 2010
the-real-msvc
KJK's work which stopped in 2008. Anyone could comment whether there is
anything we haven't achieved with CMake yet?
Tree-restructure-test
Playground for restructuring the tree. "Let's reshuflle the files and
directories and that makes our OS more stable and usable". Last commit
was almost exactly 3 years ago.
usb-bringup-trunk
Johannes? Still need that?
vs_jc
jjones? Do you plan to continue working on that?
wlan-bringup
Cameron, how's it going?
And the problems that were present at that time (rbuild to cmake migration
etc...) are solved now...
H.
-----Message d'origine-----
De : ros-dev-bounces(a)reactos.org [mailto:ros-dev-bounces@reactos.org] De la
part de Ged Murphy
Envoyé : mardi 8 octobre 2013 19:38
À : 'ReactOS Development List'
Objet : Re: [ros-dev] Branches status & cleanup
Yes! This is such an obvious improvement, I'm surprised it's still not
widely accepted.
An epic mail from Timo explaining the current tree layout
https://www.reactos.org/archives/public/ros-dev/2010-July/013278.html
For anyone still interested in reading our rants, here's the start of the
original mailing list convo
https://www.reactos.org/archives/public/ros-dev/2010-July/013257.html
-----Original Message-----
From: ros-dev-bounces(a)reactos.org [mailto:ros-dev-bounces@reactos.org] On
Behalf Of Hermès BÉLUSCA - MAÏTO
Sent: 08 October 2013 17:47
To: 'ReactOS Development List'
Subject: [SPAM]Re: [ros-dev] Branches status & cleanup
> Tree-restructure-test
> Playground for restructuring the tree. "Let's reshuflle the files and
directories and that makes our OS more stable and usable". Last commit was
almost exactly 3 years ago.
I'm personally very interested in this thing (cf.
http://www.reactos.org/forum/viewtopic.php?p=102258&sid=ef8d6c9a27f9e3800b7d
ff87afdc5919 and OF COURSE http://www.reactos.org/wiki/Techwiki:File_Layout
) which aims at bringing modularity.
Cheers,
Hermès.
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
You are implementing part of ReactOS so you can't just silently
relicense your code in one commit to a license which is incompatible
with ReactOS aims and goals.
At the very least, I would appreciate a discussion with our team
regarding this before doing such commits.
Please revert. The runtime linking exception was added for a reason, not
for amusement or RMS trolling. RMS is unhappy either way (not that I
care about his opinion :).
Regards,
Aleksey Bragin
On 01.10.2013 2:01, aandrejevic(a)svn.reactos.org wrote:
> Author: aandrejevic
> Date: Mon Sep 30 22:01:38 2013
> New Revision: 60485
>
> URL: http://svn.reactos.org/svn/reactos?rev=60485&view=rev
> Log:
> [SOFT386]
> Change the license of Soft386 to GPLv2. The previous license was also
> GPLv2, but it had a runtime linking exception. The new license is the
> original GPLv2 with no exceptions.
>
>
> Added:
> branches/ntvdm/lib/soft386/COPYING (with props)
> Modified:
> branches/ntvdm/lib/soft386/common.c
> branches/ntvdm/lib/soft386/common.h
> branches/ntvdm/lib/soft386/common.inl
> branches/ntvdm/lib/soft386/opcodes.c
> branches/ntvdm/lib/soft386/opcodes.h
> branches/ntvdm/lib/soft386/opgroups.c
> branches/ntvdm/lib/soft386/opgroups.h
> branches/ntvdm/lib/soft386/soft386.c
>
I didn't deny anyone anything. I'm not the author of the code you just
"fixed" (you missed the brackets btw). I see that you were corrected by
him in r60473.
Regards,
Amine.
Hello,
Let me invite you to the monthly status meeting taking place last
Thursday of this month, 26th of September, 19:00 UTC. Put that into your
calendars so you don't forget. That's tomorrow!
IRC service will only be started shortly before the meeting. Your
participation passwords and server address will be emailed to you
shortly before the meeting starts, and they are going to be different
once again as they are not stored in any database. Hopefully it's not
much of inconvenience.
If someone still is not getting passwords sent before a meeting - please
email Pierre before the meeting started to get one. And thanks Pierre
for handling technical side of the meeting nearly all the time.
The agenda will be posted shortly before the meeting, suggestions are
welcome (send them to me shortly before the meeting starts).
Regards,
Aleksey Bragin
Give contact details for immediate fund transfer...
Sent from my Windows Phone
-----Original Message-----
From: Pierre Schweitzer
Sent: 22-09-2013 PM 04:31
To: ReactOS Development List
Subject: Re: [ros-dev] reactos.org is down
Your offer to pay a full-time sysadmins team (4 is fine), with on-call
time for the next year has been well received.
Thanks as well to offer us two more machines to ensure this never
happens again.
Please contact ReactOS Deutschland e.V. for fund transfert information.
Such considerable efforts are never forgotten.
On 22/09/2013 12:39, Ameer Ali wrote:
> Makesure that reactos.org site is available at everytime.Many activity got
> pending due to this. Don't repeat.
>
> Provide action plan for the same.urgent
>
> Sent from my Linux Phone
> ------------------------------
> From: Pierre Schweitzer
> Sent: 22-09-2013 PM 03:26
> To: ros-dev(a)reactos.org
> Subject: Re: [ros-dev] reactos.org is down
>
> Hi,
>
> we're currently getting back online.
>
> Sorry for the inconvenience caused by this downtime.
>
> With my best regards,
>
> On 22/09/2013 11:25, Александр wrote:
>
> reactos.org is down
--
Pierre Schweitzer<pierre at reactos.org>
System Administrator
ReactOS Foundation
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
Makesure that reactos.org site is available at everytime.Many activity got
pending due to this. Don't repeat.
Provide action plan for the same.urgent
Sent from my Linux Phone
------------------------------
From: Pierre Schweitzer
Sent: 22-09-2013 PM 03:26
To: ros-dev(a)reactos.org
Subject: Re: [ros-dev] reactos.org is down
Hi,
we're currently getting back online.
Sorry for the inconvenience caused by this downtime.
With my best regards,
On 22/09/2013 11:25, Александр wrote:
reactos.org is down
--
С наилучшими пожеланиями, Александр.
_______________________________________________
Ros-dev mailing
listRos-dev@reactos.orghttp://www.reactos.org/mailman/listinfo/ros-dev
--
Pierre Schweitzer<pierre at reactos.org>
System Administrator
ReactOS Foundation