RMS?
Hang-out from time to time near 77 Mass Ave.? J
-John
I actually did get a simple port of freeloader and reactos working on my
iPod touch a while ago. :P
On Dec 25, 2012, at 4:55 AM, Hermès BÉLUSCA - MAÏTO <hermes.belusca(a)sfr.fr>
wrote:
Well, I fear Igor is right.
Hermès.
De : <mailto:ros-dev-bounces@reactos.org> ros-dev-bounces(a)reactos.org [
<mailto:ros-dev-bounces@reactos.org> mailto:ros-dev-bounces@reactos.org] De
la part de Igor Paliychuk
Envoyé : mardi 25 décembre 2012 07:16
À : ReactOS Development List
Objet : Re: [ros-dev] Status of ARM Development
If you want to help, go ahead. If you are just asking, the answer is: "There
is no work on ARM port going on because there are no human resources for
doing that". Well, at least afaik.
2012/12/25 J. C. Jones <jaibuduvin(a)gmail.com>
Hi All,
Newbie here (2 days). I would like to know the who-is-doing-what for the ARM
port. It seems that, with the current lock-down of all three major mobile
platforms (iOS/Android/Windows Phone 8), as well as the impending surge in
2013 of ultra-cheap mobile devices like tablets based on ARM, and of course,
the loveable Raspberry Pi, a truly open Windows-oriented platform is more
needed than ever.
J.C.
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
_______________________________________________
Ros-dev mailing list
Ros-dev(a)reactos.org
http://www.reactos.org/mailman/listinfo/ros-dev
_____
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2013.0.2805 / Virus Database: 2637/5987 - Release Date: 12/25/12
Is there any documentation available for where ReactOS stores its
logfiles? For a phase 2/3 installation to harddisk, obviously it gets
stores on drive C: somewhere. For phase 1, screen and debugport
(com/rs232) seem to be the only options. Same goes for the BootCD and
LiveCD.
As I'm experiencing massive issues with getting ReactOS to boot on
USB-enabled real-hardware systems, I'd like to boot from the CD and have
ReactOS automatically write logfile to whichever first FAT filesystem it
can find. Irrelevant if it's USB stick or ATA hdd-partition. Is this
possible or even already done?
If above is not possible, which exact configuration settings would I
need for Bochs or QEMU (so I get debug log file) to add:
* USB optical device (ISO file on host)
* USB harddisk (hdd-imagefile on host)
* USB mouse
* USB keyboard
Lacking a 2nd system and photocamera device, all that remains for
obtaining logfiles is using an emulator, which usually configure their
hdd/cd as ATAPI devices and input as PS/2 devices
I'm hoping an emulator will show same issues as on real hardware, and
that the logfiles can add to bugreports already present.
Bernd
PS: tested 58013 and searched
http://jira.reactos.org/secure/IssueNavigator.jspa for USB
PPS: Haiku happily boots up on this machine from my isostick device.
Hi All,
I install the RosBE on my machine(gentoo linux + kde )
when I successfully ran the RosBE-Builder.sh, and
then the createshortcut.sh to create a short cut on desktop,
it failed.
It is cause by that createshortcut.sh assume that here exist
a $HOME/Desktop, but I haven't a desktop folder in $HOME
At the very top of script[RosBE-Unix-2.1/scripts/createshortcut.sh]
there is :
----- snippt -----
# Constants
DEFAULT_SHORTCUT_DIR="$HOME/Desktop"
----- snippt -----
It makes an ill-conceived assumption, because :
1) No Desktop folder must be guaranteed, though KDE/GNOME
provides it by default, but when I install it by my own, it doesn't.
2) Even it exsits ,the name of the Desktop folder is locale-specified,
for example, it may be in chinese word form.
So a portable, robust way is :
* Probe the folder use a tool called * xdg-user-dir, *provided
the freedesktop.org, which is shipped with most
distro compliant with
freedesktop.org.(xdg-user-dirs<http://freedesktop.org/wiki/Software/xdg-user-dirs>)
* If there isn't this tool or it fails to probe
the folder, we shall check the $HOME/Desktop explictly; if it fails
again, we should create it
manually.
Here is my fix:
XDG_USER_DIR_BIN=`which xdg-user-dir` && \
DEFAULT_SHORTCUT_DIR=`$XDG_USER_DIR_BIN DESKTOP`
if test -z ${DEFAULT_SHORTCUT_DIR} ; then
[ -d $HOME/Desktop ] && DEFAULT_SHORTCUT_DIR=$HOME/Desktop
else
mkdir $HOME/Desktop && DEFAULT_SHORTCUT_DIR=$HOME/Desktop