From owner-freebsd-emulation@FreeBSD.ORG Sat Nov 30 23:41:51 2013 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BE6FC1A for ; Sat, 30 Nov 2013 23:41:51 +0000 (UTC) Received: from mail-wi0-x229.google.com (mail-wi0-x229.google.com [IPv6:2a00:1450:400c:c05::229]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AB64119F for ; Sat, 30 Nov 2013 23:41:50 +0000 (UTC) Received: by mail-wi0-f169.google.com with SMTP id hm6so3345674wib.2 for ; Sat, 30 Nov 2013 15:41:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=he3/EKdj1LBm+aDWtN68Vz9531AFKQSE3Hk1t9CJkx0=; b=mqVa2g/Z/FbrfuDos+1SrBgp9sUv1h5SuPAd4xc9XpJNgeSi+5kg1uJN7cm4vVwwmN Igl7QURbcKeMPOi0tyMadw8uW/ahxLJDmxp5TVxVjnZFjhMqasoEB+HJByMCAogwYNUb qIyz08PKLPafmYD6Ef1S8ix+vipridTMH+Z7YA7LU9rOVRKFYHVuoNrwHkJVILgdpjEy zOe2Y6d2541dZj3HRZJAs1Z5PeHuXDnoPUU5IXkUD4yDMkQ0KI6qHi1/Grfd5jqMrtXf OIGpAjzqeAsKogu4l7r4EuuHfKKmdba5gwoF1vyHDhqk0j2CLVe959bLCw2vCuqEQG5b CACA== MIME-Version: 1.0 X-Received: by 10.194.21.225 with SMTP id y1mr1107875wje.60.1385854908711; Sat, 30 Nov 2013 15:41:48 -0800 (PST) Received: by 10.194.80.5 with HTTP; Sat, 30 Nov 2013 15:41:48 -0800 (PST) Date: Sun, 1 Dec 2013 01:41:48 +0200 Message-ID: Subject: Linux ABI/Emulation for DBUS, HAL From: Juris Kaminskis To: emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.16 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Nov 2013 23:41:51 -0000 Hello, I have commercial software that has only binary .rpm package. It depends on pcscd, which depends on DBUS and HAL. This is what shows: root@:/compat/linux # truss usr/sbin/pcscd -df gettimeofday({1385854507.756325 },0x0) = 0 (0x0) 04667092 hotplug_libhal.c:460:HPRegisterForHotplugEvents() error: dbus_bus_get: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. write(2,"\^[[36m04667092\^[[0m \^[[35mhot"...,345) = 345 (0x159) gettimeofday({1385854507.757039 },0x0) = 0 (0x0) 00000714 pcscdaemon.c:517:main() SVCServiceRunLoop returned write(2,"\^[[36m00000714\^[[0m \^[[35mpcs"...,78) = 78 (0x4e) gettimeofday({1385854507.757690 },0x0) = 0 (0x0) 00000651 pcscdaemon.c:523:at_exit() cleaning /var/run write(2,"\^[[36m00000651\^[[0m \^[[34mpcs"...,72) = 72 (0x48) linux_unlink(0x80593aa,0x48,0x2826bff4,0x1,0x8049dd0,0x6) = 0 (0x0) linux_unlink(0x8059c26,0x48,0x2826bff4,0x1,0x8049dd0,0x6) = 0 (0x0) linux_unlink(0x8059c3a,0x48,0x2826bff4,0x1,0x8049dd0,0x6) = 0 (0x0) process exit, rval = 0 and when I run: root@:/compat/linux # truss bin/dbus-daemon --system ---- 75000) linux_open("/etc/selinux/config",0x8000,0666) ERR#2 'No such file or directory' linux_statfs64(0x210b4f56,0x54,0xbfbfd9c0,0x210b4f56,0x21269ff4,0x6) = 0 (0x0) linux_open("/proc/mounts",0x8000,0666) ERR#2 'No such file or directory' linux_open("/proc/filesystems",0x8000,0666) ERR#2 'No such file or directory' Could not tell if SELinux is enabled: No such file or directory write(2,"Could not tell if SELinux is ena"...,64) = 64 (0x40) SELinux pre-initialization failed write(2,"SELinux pre-initialization faile"...,34) = 34 (0x22) process exit, rval = 1 ----- Do I have any hopes on getting DBUS and HAL working under Linux ABI? Or how can I try this make to work for me? thanks Juris