From owner-freebsd-ppc@freebsd.org Sun Apr 10 01:50:41 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20B32B088FE for ; Sun, 10 Apr 2016 01:50:41 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: from asp.reflexion.net (outbound-mail-211-156.reflexion.net [208.70.211.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D9CA7160A for ; Sun, 10 Apr 2016 01:50:40 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: (qmail 16423 invoked from network); 10 Apr 2016 01:50:31 -0000 Received: from unknown (HELO rtc-sm-01.app.dca.reflexion.local) (10.81.150.1) by 0 (rfx-qmail) with SMTP; 10 Apr 2016 01:50:31 -0000 Received: by rtc-sm-01.app.dca.reflexion.local (Reflexion email security v7.90.2) with SMTP; Sat, 09 Apr 2016 21:50:38 -0400 (EDT) Received: (qmail 17328 invoked from network); 10 Apr 2016 01:50:38 -0000 Received: from unknown (HELO iron2.pdx.net) (69.64.224.71) by 0 (rfx-qmail) with SMTP; 10 Apr 2016 01:50:38 -0000 X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network Received: from [192.168.1.8] (c-76-115-7-162.hsd1.or.comcast.net [76.115.7.162]) by iron2.pdx.net (Postfix) with ESMTPSA id 7DDFB1C4079; Sat, 9 Apr 2016 18:50:27 -0700 (PDT) From: Mark Millard Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: 11.0-CURRENT buildworld lib32/libsoft failures: ioctl.c and sys/dev/ciss/cissio.h and __amd64__ vs. __amd64 example; LIBCOMPATWMAKEFLAGS and CP="${XCPP}" Date: Sat, 9 Apr 2016 18:50:32 -0700 Message-Id: <36DB1DE3-B69D-4D65-9BB3-D6619DE4EC38@dsl-only.net> Cc: freebsd-arm , FreeBSD PowerPC ML , Bryan Drewery , Warner Losh , emaste@freebsd.org To: FreeBSD Toolchain , FreeBSD Current Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Apr 2016 01:50:41 -0000 I'm currently getting errors for CCIS_PASSTHRU32 and others in ioctl.c = not being defined while an amd64 context updates itself from -r297514 to = -r297769 via buildworld. The problem is during lib32's build activity. A = grep of the log shows: > ioctl.c:472:18: error: use of undeclared identifier 'CCISS_PASSTHRU32' > ioctl.c:1186:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_32' > ioctl.c:1190:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_TRUNC_32' > ioctl.c:1196:18: error: use of undeclared identifier = 'IPMICTL_SEND_COMMAND_32' > ioctl.c:1394:18: error: use of undeclared identifier = 'MPTIO_RAID_ACTION32' > ioctl.c:1398:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_HEADER32' > ioctl.c:1402:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_PAGE32' > ioctl.c:1406:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_HEADER32' > ioctl.c:1410:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_PAGE32' > ioctl.c:1414:18: error: use of undeclared identifier = 'MPTIO_WRITE_CFG_PAGE32' sys/dev/ciss/cissio.h is an example of a more general issue here for = lib32 (for amd64 not cross built) and libsoft (for amd64 cross building = for a rpi2 as an example). sys/dev/ciss/cissio.h has code such as: > #ifdef __amd64__ > typedef struct { > LUNAddr_struct LUN_info; /* 8 */ > RequestBlock_struct Request; /* 20 */ > ErrorInfo_struct error_info; /* 48 */ > u_int16_t buf_size; /* 2 */ > u_int32_t buf; /* 4 */ > } __packed IOCTL_Command_struct32; > #endif > . . . > #ifdef __amd64 > #define CCISS_PASSTHRU32 _IOWR ('C', 210, = IOCTL_Command_struct32) > #endif Note the __ suffix vs. not after the "amd64". There can be headers = around that produce such variations of macros. arm has one of those that = makes macros that track characteristics of specific types of arm = variants, for example. The details of what happen for this sort of thing can depend on = Makefile.libcompat's: > LIBCOMPATWMAKEFLAGS+=3D CC=3D"${XCC} ${LIBCOMPATCFLAGS}" \ > CXX=3D"${XCXX} ${LIBCOMPATCFLAGS} = ${LIBCOMPATCXXFLAGS}" \ > DESTDIR=3D${LIBCOMPATTMP} \ > -DNO_CPU_CFLAGS \ > MK_CTF=3Dno \ > -DNO_LINT \ > MK_TESTS=3Dno vs. also having CPP=3D"${XCPP}" listed as can be required for cross = builds (such amd64 building for an rpi2 [libsoft] or powerpc64 [lib32]): > LIBCOMPATWMAKEFLAGS+=3D CC=3D"${XCC} ${LIBCOMPATCFLAGS}" \ > CXX=3D"${XCXX} ${LIBCOMPATCFLAGS} = ${LIBCOMPATCXXFLAGS}" \ > CPP=3D"${XCPP}" \ > DESTDIR=3D${LIBCOMPATTMP} \ > -DNO_CPU_CFLAGS \ > MK_CTF=3Dno \ > -DNO_LINT \ > MK_TESTS=3Dno Because of previously needing it for cross compiles I currently have the = CPP=3D"${XCPP}" in place in my context: an arm header was processed by = the amd64 preprocessor and the header could not detect its context = correctly: > --- all_subdir_lib/libsysdecode --- > In file included from :17: > In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/dev/nvme/nvme.h:36: > In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/sys/param.h:135: > In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/param.h:49: > = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/acle-compat.h= :182:4: error: Unable to determine architecture version. > # error Unable to determine architecture version. > ^ Is this area broken overall? Or is there something that I need to do = differently in order to have amd64 rebuild itself (not a cross build) = but also to also have amd64 do cross builds (such as arm and its = libsoft)? =3D=3D=3D Mark Millard markmi at dsl-only.net From owner-freebsd-ppc@freebsd.org Sun Apr 10 16:30:40 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5120B09CB3 for ; Sun, 10 Apr 2016 16:30:40 +0000 (UTC) (envelope-from admin153@u153.heyuanfz.com) Received: from u153.heyuanfz.com (u153.heyuanfz.com [161.123.213.153]) by mx1.freebsd.org (Postfix) with ESMTP id 464D31F25 for ; Sun, 10 Apr 2016 16:30:39 +0000 (UTC) (envelope-from admin153@u153.heyuanfz.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=heyuanfz; d=u153.heyuanfz.com; h=Date:From:To:Subject:Message-ID:Mime-Version:Content-Type; i=admin153@u153.heyuanfz.com; bh=MFgzvAMoX1NgUpdEoWttmY87uvk=; b=ECfxtFbqQtMLDZbVDMUdXaDO4TpZ14MWSH9cx2Xx9hL3xogPUhfxlGndpyMRP7m14wkejtdK0Yks fBoCCQxKhkmKIOCyS852Y3e8jqF6wR7OnW6kIzkDD6lr9pVs596XcsF3OHOdo0TCTKhAcfJOxK6x zSLv/19H/Bn0RVU/kQ8= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=heyuanfz; d=u153.heyuanfz.com; b=PvYSKKLQqeGwAEiiSJBCaFYQ64lDj4GF6V6gIe2ap8sCdrH5Mq/l0A6wxpJHfIFeKJH8dDkIOGf4 bSMMbGohUKRj7JBlwo28KQg8YzauG9Mh2MYmIbRvHGtAJsG/mk7UwvvVuEBu80i6+Ews/prHHWjJ EfF5eyJc50eMccsPg6c=; Date: Mon, 11 Apr 2016 00:00:25 +0800 From: "Rayban" To: Subject: Save Up To 83% OFF and Free Delivery Message-ID: <20160411000039786183@u153.heyuanfz.com> X-mailer: Foxmail 6, 13, 102, 15 [cn] Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Apr 2016 16:30:40 -0000 DQoNCllvdSdyZSByZWNlaXZpbmcgdGhpcyBuZXdzbGV0dGVyIGJlY2F1c2UgeW91IHN1YnNjcmli ZWQgZnJvbSBvdXIgd2Vic2l0ZS4NCkhhdmluZyB0cm91YmxlIHJlYWRpbmcgdGhpcyBlbWFpbD8g VmlldyBpdCBpbiB5b3VyIGJyb3dzZXIuIE5vdCBpbnRlcmVzdGVkIGFueW1vcmU/IFVuc3Vic2Ny aWJlIGluc3RhbnRseS4gDQoNCiAgRlJFRSBTSElQUElORyAqICBGcmVlIFJldHVybiAqIA0KDQoN CkJlc3QgU2VsbGVycyBDb2xsZWN0aW9ucyBKdWxpZXQgT3ZhbCBGcmFtZSBUeXBlcyBDb21taXQg U3EgRmFzdCBKYWNrZXQgTmV3IEFycml2YWxzIA0KDQpEaXNjb3VudCBSYXliYW4gU3VuZ2xhc3Nl cyANCldlbGNvbWUgdG8gbXkgc3VuZ2xhc3NlcyBzdG9yZSANCjgzIA0KDQpFVkVSWVRISU5HIA0K JU9GRiANCg0KU0hPUCBOT1cgDQpSYXliYW4gU3VuZ2xhc3MgU3RvcmUgDQpCdXkgT3ZlciA0IHBh aXJzIHRvIGVuam95IGZyZWUgc2hpcHBpbmcgDQoNCg0KDQoNClByaXZhY3kgUG9saWN5IFNoaXBw aW5nIFJldHVybnMgQ29uZGl0aW9ucyBvZiBVc2UgDQoNCg0KDQpUbyBiZSBzdXJlIHRoYXQgeW91 IHdpbGwgcmVjZWl2ZSBvdXIgb2ZmZXJzLCB3ZSBzdWdnZXN0IHRoYXQgeW91IGFkZCBvdXIgZW1h aWwgYWRkcmVzcywgY3VzdG9tZXJzZXJ2aWNlMjRob3VyMUBnbWFpbC5jb20gdG8geW91ciBhZGRy ZXNzIGJvb2suIEluIGFjY29yZGFuY2Ugd2l0aCB0aGUgRnJlbmNoIGxhdyBvZiBKYW51YXJ5IDYs IDE5NzgsIA0KDQpPdXIgcHJvbWlzZXM6DQotIEJ1eSBPdmVyIDQgcGFpcnMgdG8gZW5qb3kgZnJl ZSBzaGlwcGluZw0KLSAxMDAgZGF5cyB0byByZXR1cm4gb3IgZXhjaGFuZ2UgYW4gaXRlbQ0KLSBT YW1lLWRheSBkaXNwYXRjaCBmb3Igb3JkZXJzIHBsYWNlZCBiZWZvcmUgNyBEYXlzLioNCi0gQ3Vz dG9tZXIgc2F0aXNmYWN0aW9uIGlzIG91ciB0b3AgcHJpb3JpdHkgDQoNCmJ1eWluZyBhIGdpZnQs IG9yIGxvb2tpbmcgZm9yIGEgcHJhY3RpY2FsIHBhaXIgb2Ygc3VuZ2xhc3NlcywgeW91J3JlIHN1 cmUgdG8gZmluZCB3aGF0IHlvdSdyZSBhZnRlciBpbiBSYXliYW4gb25saW5lIHN0b3JlIGh1Z2Ug c2VsZWN0aW9uLiB0b3AgZmFzaGlvbiBzZWxlY3Rpb24uIFdoZXRoZXIgeW91J3JlIGxvb2tpbmcg Zm9yIHRoZSBsYXRlc3QgdHJlbmRzIG9yIHRpbWVsZXNzIGNsYXNzaWNzLCBSYXliYW4gU3VuZ2xh c3NlcyBvZmZlcnMgaHVuZHJlZHMgb2YgZXN0YWJsaXNoZWQgcHJvZHVjdCBsaWtlIHN1bmdsYXNz ZXMganVzdCBmb3IgeW91LiANCg0KKlR3ZW50eS1mb3VyIGhvdXJzIGEgZGF5LCBkZXBlbmRlbnQg dXBvbiBwYXltZW50IHZhbGlkYXRpb24NCipTZWUgdGVybXMgYW5kIGNvbmRpdGlvbnMgDQoNCg0K Q29weXJpZ2h0IDIwMDktMjAxNiBSYXliYW4gU3VuZ2xhc3NlcyBBbGwgUmlnaHRzIFJlc2VydmVk LiA= From owner-freebsd-ppc@freebsd.org Mon Apr 11 23:30:38 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0290EB0C4F1 for ; Mon, 11 Apr 2016 23:30:38 +0000 (UTC) (envelope-from www-data@vps20012.ovh.net) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id DB4601A69 for ; Mon, 11 Apr 2016 23:30:37 +0000 (UTC) (envelope-from www-data@vps20012.ovh.net) Received: by freefall.freebsd.org (Postfix) id D9C9016DB; Mon, 11 Apr 2016 23:30:37 +0000 (UTC) Delivered-To: freebsd-powerpc@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by freefall.freebsd.org (Postfix) with ESMTP id D918216DA for ; Mon, 11 Apr 2016 23:30:37 +0000 (UTC) (envelope-from www-data@vps20012.ovh.net) Received: from vps43779.vps.ovh.ca (unknown [IPv6:2607:5300:100:100::36d]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BA4B81A68 for ; Mon, 11 Apr 2016 23:30:37 +0000 (UTC) (envelope-from www-data@vps20012.ovh.net) Received: from www-data by vps43779.vps.ovh.ca with local (Exim 4.80) (envelope-from ) id 1aplOm-0003rh-7a for freebsd-powerpc@freebsd.org; Mon, 11 Apr 2016 19:37:40 -0400 To: freebsd-powerpc@freebsd.org Subject: Shipment delivery problem #00154098 X-PHP-Originating-Script: 33:post.php(5) : regexp code(1) : eval()'d code(17) : eval()'d code Date: Mon, 11 Apr 2016 23:37:40 +0000 From: "FedEx 2Day" Reply-To: "FedEx 2Day" Message-ID: X-Priority: 3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Apr 2016 23:30:38 -0000 Dear Customer, We could not deliver your item. Shipment Label is attached to this email. Regards, Leslie Ashley, Sr. Operation Manager. From owner-freebsd-ppc@freebsd.org Tue Apr 12 19:36:03 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 330CFB0C19E for ; Tue, 12 Apr 2016 19:36:03 +0000 (UTC) (envelope-from rleigh@codelibre.net) Received: from auth.a.painless.aa.net.uk (a.painless.aa.net.uk [IPv6:2001:8b0:0:30::51bb:1e33]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EE32A10EF for ; Tue, 12 Apr 2016 19:36:02 +0000 (UTC) (envelope-from rleigh@codelibre.net) Received: from 182.155.187.81.in-addr.arpa ([81.187.155.182] helo=[192.168.1.219]) by a.painless.aa.net.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.77) (envelope-from ) id 1aq46P-0000tV-HI for freebsd-ppc@freebsd.org; Tue, 12 Apr 2016 20:35:59 +0100 To: FreeBSD PowerPC ML From: Roger Leigh Subject: Booting a new kernel after "make installkernel" Message-ID: <570D4E09.1000700@codelibre.net> Date: Tue, 12 Apr 2016 19:35:37 +0000 User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Painless-Spam-Score: -4.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 19:36:03 -0000 Hi folks, Sorry for the awfully naive question, but I've tried on several occasions to build world using the instructions here: https://www.freebsd.org/doc/en/books/handbook/makeworld.html They work fine on amd64, but on powerpc I'm always left with an unbootable system. It looks like it can't load or boot the kernel. I've not customised anything; I've been trying to build 10.x-stable. My previous experience was on Debian which required running yaboot to update the Open Firmware bootloader configuration. Are there any additional steps required on FreeBSD/powerpc which aren't in the generic instructions? Thanks all, Roger From owner-freebsd-ppc@freebsd.org Tue Apr 12 19:41:36 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 024C9B0C54D for ; Tue, 12 Apr 2016 19:41:36 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: from mail-yw0-x22f.google.com (mail-yw0-x22f.google.com [IPv6:2607:f8b0:4002:c05::22f]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B6BAF1531 for ; Tue, 12 Apr 2016 19:41:35 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: by mail-yw0-x22f.google.com with SMTP id o66so38872982ywc.3 for ; Tue, 12 Apr 2016 12:41:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=ATjYJxjy9NYwoCWdYURpqMXPmObHv6XxLheGg/M40yo=; b=PhpYDs1DVmDRd/NWngTvdG2Z1NO9EdQbrPBJt10dwTwOveHc2L2SA4KXuOGl8bxc03 fosCrecQtHF6oQHCMqg9m6NcBLYt48KVy7MV+vGMBFFn/PWmw7SH+uEByaE5QiSLxPob o0wZALAVjAdJchBZPqCankh1uuIzrTjZqTyAj9KEFNCZ5qNaNBZPeXYorA6I5hmjXnRl z6eiy2m0kBrKXhDZ6oIT6l9tj6ibI9nc1yjc+bTxuW7J3LFOUuyNxox8dkPr0voULVNT 0y/djOhMcFHHJI98Sde3nLD5cdh9DKNlVKQvYoqSIefgFPmXlL3cNXHhk8pv8G6dvcqT 7LqA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=ATjYJxjy9NYwoCWdYURpqMXPmObHv6XxLheGg/M40yo=; b=C/S18r1A2PR5BJP141ywrn6m5uAIoaDjhmB0g5rXy+4TIatxevnuG2C24qT6KYDYps 6HhNgh317+Y/ZSDbXjRRqhKMlB+VtZ0hPg6MhYp1Baz7v69z7PCzIWg6SjmiLjCR0MuC 6+h3Jn4MWSmi/1eIk5VpUXYonVjvZB/f0veD5pRkv2oYnZeCpxhg9fwoVlinp2AUo02P AxS2NrwsMtENFA0MdFeWZnHT2xvUqlXvZgdkYUcEB8stHPgYoWIQYNXC1NiMrfihovag fYZAQ2Fhv/30h832P2LunhwAbgFmP7PM9P6DC7S5Nlsmlrl6cepCpGRHUoAnne0UzaHU +NYA== X-Gm-Message-State: AOPr4FUYi8cvbUH+ekyh6E1UuSkoOBsXMn2I6uGVgiCLWdmvINhaB8ZTa4HMuO9s7DgcQMnuC2d3VsTkwi/1Dg== MIME-Version: 1.0 X-Received: by 10.37.87.197 with SMTP id l188mr2717516ybb.4.1460490094934; Tue, 12 Apr 2016 12:41:34 -0700 (PDT) Received: by 10.13.218.130 with HTTP; Tue, 12 Apr 2016 12:41:34 -0700 (PDT) Received: by 10.13.218.130 with HTTP; Tue, 12 Apr 2016 12:41:34 -0700 (PDT) In-Reply-To: <570D4E09.1000700@codelibre.net> References: <570D4E09.1000700@codelibre.net> Date: Tue, 12 Apr 2016 14:41:34 -0500 Message-ID: Subject: Re: Booting a new kernel after "make installkernel" From: Bill Sorenson To: Roger Leigh Cc: FreeBSD PowerPC ML Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 19:41:36 -0000 I have had an issue with 10.3 on PowerPC that causes an unbootable situation. Try 10.2-releng and if that works I have something for you to try. On Apr 12, 2016 2:36 PM, "Roger Leigh" wrote: > Hi folks, > > Sorry for the awfully naive question, but I've tried on several occasions > to build world using the instructions here: > https://www.freebsd.org/doc/en/books/handbook/makeworld.html > > They work fine on amd64, but on powerpc I'm always left with an unbootable > system. It looks like it can't load or boot the kernel. I've not > customised anything; I've been trying to build 10.x-stable. > > My previous experience was on Debian which required running yaboot to > update the Open Firmware bootloader configuration. Are there any > additional steps required on FreeBSD/powerpc which aren't in the generic > instructions? > > > Thanks all, > Roger > _______________________________________________ > freebsd-ppc@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-ppc > To unsubscribe, send any mail to "freebsd-ppc-unsubscribe@freebsd.org" > From owner-freebsd-ppc@freebsd.org Tue Apr 12 21:55:49 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1031EB0DA19 for ; Tue, 12 Apr 2016 21:55:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00F531EA7 for ; Tue, 12 Apr 2016 21:55:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u3CLtmDx006963 for ; Tue, 12 Apr 2016 21:55:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 207599] fixes for kernel built with clang failing to boot on ppc64 qemu Date: Tue, 12 Apr 2016 21:55:49 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kennethsalerno@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 21:55:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207599 --- Comment #2 from Kenneth Salerno --- (In reply to Mark Millard from comment #1) Thanks, Mark. I looked through the LLVM ticket and didn't find anything relevant to this issue on powerpc64 clang. Seems to be hanging at branch to counter register (when I compared to the a= sm generated by GCC, that code had instead a branch to link register). I even tried building the kernel modules with GCC where -mlongcall was need= ed and clang for everything else, though soft-float is a missing option in cla= ng that I'm not sure is necessary or not. I noticed building with altivec supp= ort kills the kernel load even sooner so maybe soft-float is a necessary switch clang needs for powerpc64 to build a working kernel? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Tue Apr 12 22:04:23 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BD0CB0DE79 for ; Tue, 12 Apr 2016 22:04:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4BFCB13D9 for ; Tue, 12 Apr 2016 22:04:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u3CM4MoL061102 for ; Tue, 12 Apr 2016 22:04:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 207599] fixes for kernel built with clang failing to boot on ppc64 qemu Date: Tue, 12 Apr 2016 22:04:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kennethsalerno@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 22:04:23 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207599 Kenneth Salerno changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #167575|0 |1 is obsolete| | --- Comment #3 from Kenneth Salerno --- Created attachment 169265 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D169265&action= =3Dedit Latest patchset to build ppc64 world+kernel with clang Attaching latest patchset against 11-CURRENT r297632 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Tue Apr 12 22:25:37 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D683EB0E85B for ; Tue, 12 Apr 2016 22:25:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C6C4B1596 for ; Tue, 12 Apr 2016 22:25:37 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u3CMPbUT006812 for ; Tue, 12 Apr 2016 22:25:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ppc@FreeBSD.org Subject: [Bug 207599] fixes for kernel built with clang failing to boot on ppc64 qemu Date: Tue, 12 Apr 2016 22:25:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kennethsalerno@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ppc@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2016 22:25:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207599 Kenneth Salerno changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #169265|0 |1 is obsolete| | --- Comment #4 from Kenneth Salerno --- Created attachment 169266 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D169266&action= =3Dedit Patch set to build ppc64 world+kernel with clang Cleaned up the patches to not step on other arches. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-ppc@freebsd.org Thu Apr 14 00:23:01 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E68CB0F91D for ; Thu, 14 Apr 2016 00:23:01 +0000 (UTC) (envelope-from rleigh@codelibre.net) Received: from auth.a.painless.aa.net.uk (a.painless.aa.net.uk [IPv6:2001:8b0:0:30::51bb:1e33]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F19C61FD7 for ; Thu, 14 Apr 2016 00:23:00 +0000 (UTC) (envelope-from rleigh@codelibre.net) Received: from 182.155.187.81.in-addr.arpa ([81.187.155.182] helo=ls25531.lan) by a.painless.aa.net.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.77) (envelope-from ) id 1aqV3f-0004q3-3M; Thu, 14 Apr 2016 01:22:56 +0100 Subject: Re: Booting a new kernel after "make installkernel" To: Bill Sorenson References: <570D4E09.1000700@codelibre.net> Cc: FreeBSD PowerPC ML From: Roger Leigh Message-ID: <570EE30D.5060506@codelibre.net> Date: Thu, 14 Apr 2016 01:23:41 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:38.0) Gecko/20100101 Thunderbird/38.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Painless-Spam-Score: -4.0 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 00:23:01 -0000 I've retried with 10.2-releng (r297915) built from a 10.2-RELEASE-p0 install, and it built and rebooted just fine, now on p14. It took 14 hours, but great success! I'd be happy to retry with 10.3 or 11 either vanilla or with any patches you'd like testing. Thanks, Roger On 12/04/2016 20:41, Bill Sorenson wrote: > I have had an issue with 10.3 on PowerPC that causes an unbootable > situation. Try 10.2-releng and if that works I have something for you to > try. > > On Apr 12, 2016 2:36 PM, "Roger Leigh" > wrote: > > Hi folks, > > Sorry for the awfully naive question, but I've tried on several > occasions to build world using the instructions here: > https://www.freebsd.org/doc/en/books/handbook/makeworld.html > > They work fine on amd64, but on powerpc I'm always left with an > unbootable system. It looks like it can't load or boot the kernel. > I've not customised anything; I've been trying to build 10.x-stable. > > My previous experience was on Debian which required running yaboot > to update the Open Firmware bootloader configuration. Are there any > additional steps required on FreeBSD/powerpc which aren't in the > generic instructions? From owner-freebsd-ppc@freebsd.org Thu Apr 14 00:37:12 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BBA1B0FD4E for ; Thu, 14 Apr 2016 00:37:12 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: from mail-yw0-x230.google.com (mail-yw0-x230.google.com [IPv6:2607:f8b0:4002:c05::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 241EF153A for ; Thu, 14 Apr 2016 00:37:12 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: by mail-yw0-x230.google.com with SMTP id i84so88666507ywc.2 for ; Wed, 13 Apr 2016 17:37:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=jKigA0ZfPEz0uMikrGF7PWreaygofqhH8/x5lR+Z3Xo=; b=CaGm+3oweEv5IzwFfTcd0TgSrHEY/HJnGxYKMBjjY0nxZxdGirn9ybvkIVW5H7erLq IvNptuvLqve2xCZziQuFbyi523cnlglFOKpF/AdPz/FaA6+TIzEqTJ8oVDiY36LHOukL TN/AMyyASmaZWHhn/AdalpoJBQiSk0PbV5TMAU5+NduGd3jhPy/zDJjQdpsfwOfPPuhB +4foX03twLw9nbH8HxEYUfEKrs/iJrhQkiHETtt+I4N3HfcUYriBd4GS6wECGTMlgrHa u7A7UAex7I2a+DmG839lyn3cHYlh287uQf7udK9pmKB1+r712KzwMa53s2/LDaOppr1M Iz3Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=jKigA0ZfPEz0uMikrGF7PWreaygofqhH8/x5lR+Z3Xo=; b=gcG5JRRkiiZMNjJ2ZPePlxl6C3jdN9/3JKIq/z4XqXg6NqwKpTday7LN+YpTKTaYA8 jMdX+QCK/ThO9Ml+i/qT5Zj01foSK7Xop5dO5t+lutrIgqKEp2FKI5zAlnpX/tUFfYNH ljAY9U5rEDUhz53iJPNAwqNeiAUGj74QjWDswlDHnvkXzMDhQREUMhd0sg8qF/qeW/Ys zsPXt3rS/S5oTZkFXro3mXFB6ZtvOGst68/Qhn++g9hRYfx1JouR+ysOKVAL+bmZNm3x kxBFb6BkEuLITbvJiMZs2iUflAGZuBkovtF3G6vwwNFXnEd1+ou/8D8xHWi9730o2mST 1yPA== X-Gm-Message-State: AOPr4FUbTX/uEnar6QhXw7gbIL6dL6AustihFP7T9/DBsAiaDE62FKyHFsu4+q0w9WTn0ThIIgn5+c/GBP9G6w== MIME-Version: 1.0 X-Received: by 10.129.134.133 with SMTP id w127mr6589858ywf.252.1460594230995; Wed, 13 Apr 2016 17:37:10 -0700 (PDT) Received: by 10.13.218.130 with HTTP; Wed, 13 Apr 2016 17:37:10 -0700 (PDT) In-Reply-To: <570EE30D.5060506@codelibre.net> References: <570D4E09.1000700@codelibre.net> <570EE30D.5060506@codelibre.net> Date: Wed, 13 Apr 2016 19:37:10 -0500 Message-ID: Subject: Re: Booting a new kernel after "make installkernel" From: Bill Sorenson To: Roger Leigh Cc: FreeBSD PowerPC ML Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 00:37:12 -0000 Hopefully this makes sense. What i want you to do is replace "sys/dev/ofw/ofw_iicbus.c" in 10.3 with the "sys/dev/ofw/ofw_iicbus.c" from 10.2. There was a commit about 2 months ago to 10-stable and now 10.3 that I think broke the way Open Firmware machines read temp sensors, so your kernel wont boot because it thinks your system is overheating and resets. If you check out 10.3 and copy the 10.2 ofw_iicbus.c over into the tree replacing the newer one, I'll bet you'll build and boot fine. If it solves your problem I'll know I'm on the right track. (I think the breakage is actually in a driver somewhere, and the fix to ofw_iicbus.c caused a regression). Anyway, you should be able to just try building the kernel rather than the whole system if you want to save time. Especially if your 10.3 userland already booted back up with your kernel.old before. Thanks, Bill S. On Wed, Apr 13, 2016 at 7:23 PM, Roger Leigh wrote: > I've retried with 10.2-releng (r297915) built from a 10.2-RELEASE-p0 > install, and it built and rebooted just fine, now on p14. It took 14 > hours, but great success! > > I'd be happy to retry with 10.3 or 11 either vanilla or with any patches > you'd like testing. > > > Thanks, > Roger > > On 12/04/2016 20:41, Bill Sorenson wrote: > >> I have had an issue with 10.3 on PowerPC that causes an unbootable >> situation. Try 10.2-releng and if that works I have something for you to >> try. >> >> On Apr 12, 2016 2:36 PM, "Roger Leigh" > > wrote: >> >> Hi folks, >> >> Sorry for the awfully naive question, but I've tried on several >> occasions to build world using the instructions here: >> https://www.freebsd.org/doc/en/books/handbook/makeworld.html >> >> They work fine on amd64, but on powerpc I'm always left with an >> unbootable system. It looks like it can't load or boot the kernel. >> I've not customised anything; I've been trying to build 10.x-stable. >> >> My previous experience was on Debian which required running yaboot >> to update the Open Firmware bootloader configuration. Are there any >> additional steps required on FreeBSD/powerpc which aren't in the >> generic instructions? >> > > From owner-freebsd-ppc@freebsd.org Thu Apr 14 00:43:00 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37BFFB0E02F for ; Thu, 14 Apr 2016 00:43:00 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: from mail-yw0-x22b.google.com (mail-yw0-x22b.google.com [IPv6:2607:f8b0:4002:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EA7FE18EF for ; Thu, 14 Apr 2016 00:42:59 +0000 (UTC) (envelope-from instructionset@gmail.com) Received: by mail-yw0-x22b.google.com with SMTP id o66so88725409ywc.3 for ; Wed, 13 Apr 2016 17:42:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=LCRdsup20oE/33N+38U+A4ZZiB03mVJgWGJsr78OvG8=; b=aOXZ9hk3vOti7ipvWmNndp5FKGWDeEgbemNboMLeoHa4jY2fh39IeTBdZl/PlJisnh oGABuuhLP/KtkCRMdyuxZmFYHrv1PTcX3mEKIhJxKD3ljIHu9xAbo3oGwFweOkYkU09n WsfuEGBupv1h92MtGQH8PNEGIKNIV0Hf8LRKXV7FKvVBwqblo+7qlhLh+Rdq6x+3tD4U VdYNgaamuxzO72d77pr27E0iECHJMViLhNjw9JQiqwrj4xrZdvwXgdmkj7KZRQarcnQP LxHXxY5zjszYfb6VGOVBLQrv4GBXB1haJ6qlKXkiMaiWbKqkViwDFOry7lt+lz85SV1p 2agg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=LCRdsup20oE/33N+38U+A4ZZiB03mVJgWGJsr78OvG8=; b=lbQDcFeF5DVfF9DHi9bd02gYMby5N+sSg57EXRMMbMFxlB7ONJK4E8Uc198FHwvAuI xLSwyXuh1XSPn81JnebcUcc6r+rkSWQxL3hBx+vKpcLH/WUmlXGn2AgDxt2DQoIZkvm/ YDylvCTJ/Vd7xZnenBTZ7V4yxLSLAea9roivE9NO+El5RAc56a7v3bxLVhw3q9T1D3If Su9jS9zgOpcCYcgBwPeQKggm6k6MrKoOV0D7YWcswYKyPHjlavwaXCFbP78kmFWGjqbn WH8ISGSbgeQnDL2/zPJ794UFumdK71v/iyho9YFze7wvltvpol6L0a91os0YEBEbo9Wf o2SQ== X-Gm-Message-State: AOPr4FWe9SMTlhNIu0FhN61jOwHS/OYjxKvGrMKyyZLPtP7mVW/Npkyj7ZlKCPTNbc6e47zQxIqRTaocw1xnjw== MIME-Version: 1.0 X-Received: by 10.37.37.151 with SMTP id l145mr6907147ybl.112.1460594579264; Wed, 13 Apr 2016 17:42:59 -0700 (PDT) Received: by 10.13.218.130 with HTTP; Wed, 13 Apr 2016 17:42:59 -0700 (PDT) In-Reply-To: References: <570D4E09.1000700@codelibre.net> <570EE30D.5060506@codelibre.net> Date: Wed, 13 Apr 2016 19:42:59 -0500 Message-ID: Subject: Re: Booting a new kernel after "make installkernel" From: Bill Sorenson To: Roger Leigh Cc: FreeBSD PowerPC ML Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 00:43:00 -0000 If this fixes your problem I'll file a bug report. I've been working on coming up with a real patch to properly fix this in my spare time. Thanks, Bill S. On Wed, Apr 13, 2016 at 7:37 PM, Bill Sorenson wrote: > Hopefully this makes sense. What i want you to do is replace > "sys/dev/ofw/ofw_iicbus.c" in 10.3 with the "sys/dev/ofw/ofw_iicbus.c" from > 10.2. There was a commit about 2 months ago to 10-stable and now 10.3 that > I think broke the way Open Firmware machines read temp sensors, so your > kernel wont boot because it thinks your system is overheating and resets. > > If you check out 10.3 and copy the 10.2 ofw_iicbus.c over into the tree > replacing the newer one, I'll bet you'll build and boot fine. > > If it solves your problem I'll know I'm on the right track. (I think the > breakage is actually in a driver somewhere, and the fix to ofw_iicbus.c > caused a regression). > > Anyway, you should be able to just try building the kernel rather than the > whole system if you want to save time. Especially if your 10.3 userland > already booted back up with your kernel.old before. > > Thanks, > Bill S. > > > On Wed, Apr 13, 2016 at 7:23 PM, Roger Leigh wrote: > >> I've retried with 10.2-releng (r297915) built from a 10.2-RELEASE-p0 >> install, and it built and rebooted just fine, now on p14. It took 14 >> hours, but great success! >> >> I'd be happy to retry with 10.3 or 11 either vanilla or with any patches >> you'd like testing. >> >> >> Thanks, >> Roger >> >> On 12/04/2016 20:41, Bill Sorenson wrote: >> >>> I have had an issue with 10.3 on PowerPC that causes an unbootable >>> situation. Try 10.2-releng and if that works I have something for you to >>> try. >>> >>> On Apr 12, 2016 2:36 PM, "Roger Leigh" >> > wrote: >>> >>> Hi folks, >>> >>> Sorry for the awfully naive question, but I've tried on several >>> occasions to build world using the instructions here: >>> https://www.freebsd.org/doc/en/books/handbook/makeworld.html >>> >>> They work fine on amd64, but on powerpc I'm always left with an >>> unbootable system. It looks like it can't load or boot the kernel. >>> I've not customised anything; I've been trying to build 10.x-stable. >>> >>> My previous experience was on Debian which required running yaboot >>> to update the Open Firmware bootloader configuration. Are there any >>> additional steps required on FreeBSD/powerpc which aren't in the >>> generic instructions? >>> >> >> > From owner-freebsd-ppc@freebsd.org Thu Apr 14 05:03:04 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37E8DB0FE19 for ; Thu, 14 Apr 2016 05:03:04 +0000 (UTC) (envelope-from andy.silva@snsreports.com) Received: from mailer238.gate85.rs.smtp.com (mailer238.gate85.rs.smtp.com [74.91.85.238]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFB9D1279 for ; Thu, 14 Apr 2016 05:03:03 +0000 (UTC) (envelope-from andy.silva@snsreports.com) X-MSFBL: eyJnIjoiU25zdGVsZWNvbV9kZWRpY2F0ZWRfcG9vbCIsImIiOiI3NF85MV84NV8y MzgiLCJyIjoiZnJlZWJzZC1wcGNAZnJlZWJzZC5vcmcifQ== Received: from [192.168.80.42] ([192.168.80.42:57889] helo=rs-ord-mta04-2.smtp.com) by rs-ord-mta04-3.smtp.com (envelope-from ) (ecelerity 4.1.0.46749 r(Core:4.1.0.4)) with ESMTP id C4/47-13530-E8C1F075; Thu, 14 Apr 2016 04:29:02 +0000 DKIM-Signature: v=1; a=rsa-sha256; d=smtp.com; s=smtpcomcustomers; c=relaxed/simple; q=dns/txt; i=@smtp.com; t=1460608142; h=From:Subject:To:Date:MIME-Version:Content-Type; bh=LCmiSHynV89iBGgqzkfLYFwkjCtY8XOOFZZLTnlLwZg=; b=G/v7bslfJz+qrUFqnWbe1JAZhNEZKYYn+yki0Kmu+X7kqlH6aCuBnx4gCEUWr03P FketWE79ZN7KJVYy0Cjn1WdvNAN8pFf3MdboUQK7c/wVewkbgrgzFp8/usddzGer FVPdQHhZMi/JkScYzLKqPYUBQDCiNtEueU6uT/Y0Gio=; Received: from [205.250.224.245] ([205.250.224.245:46572] helo=d205-250-224-245.bchsia.telus.net) by rs-ord-mta04-2.smtp.com (envelope-from ) (ecelerity 4.1.0.46749 r(Core:4.1.0.4)) with ESMTPA id 50/F1-08113-E8C1F075; Thu, 14 Apr 2016 04:29:02 +0000 MIME-Version: 1.0 From: "Andy Silva" Reply-To: andy.silva@snsreports.com To: freebsd-ppc@freebsd.org Subject: The HetNet Ecosystem (Small Cells, Carrier Wi-Fi, C-RAN & DAS): 2016 - 2030 - Opportunities, Challenges, Strategies & Forecasts (Report) X-Mailer: Smart_Send_2_0_138 Date: Wed, 13 Apr 2016 21:28:49 -0700 Message-ID: <70044180290881940418461@Ankur> X-Report-Abuse: SMTP.com is an email service provider. Our abuse team cares about your feedback. Please contact abuse@smtp.com for further investigation. X-SMTPCOM-Tracking-Number: 06bb1c70-29bd-48b2-b728-022d10e86cb1 X-SMTPCOM-Sender-ID: 6008902 Feedback-ID: 6008902:SMTPCOM Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 05:03:04 -0000 The HetNet Ecosystem (Small Cells, Carrier Wi-Fi, C-RAN & DAS): 2016 =96 20= 30 =96 Opportunities, Challenges, Strategies & Forecasts (Report) =20 Hello=20 Let me offer you the latest SNS Research report to you and your team, " The= HetNet Ecosystem (Small Cells, Carrier Wi-Fi, C-RAN & DAS): 2016 =96 2030 = =96 Opportunities, Challenges, Strategies & Forecasts." Below is the report= highlight and if you like I can send you sample pages for your details ins= ide. =20 Our reports are compiled with primary and secondary informations to produce= an overall industry outlook. =20 Key Questions Answered: The report provides answers to the following key questions: How big is the HetNet opportunity=3F What trends, challenges and barriers are influencing its growth=3F How is the ecosystem evolving by segment and region=3F What will the market size be in 2020 and at what rate will it grow=3F Which submarkets will see the highest percentage of growth=3F How can HetNet infrastructure investments improve wireless coverage and all= eviate congestion in mobile operator networks=3F Is there a market for rural small cell deployments=3F What are the prospects of millimeter wave technology for small cell backhau= l and C-RAN fronthaul=3F Is Ethernet a feasible solution for fronthaul networking=3F How big is the market for virtualized Cloud RAN networks=3F Who are the key market players, what is their market share and what are the= ir strategies=3F What strategies should HetNet infrastructure vendors and mobile operators a= dopt to remain competitive=3F Report Information: Release Date: February 2016 Number of Pages: 621 Number of Tables and Figures: 226 =20 Report Overview: Driven by in-building wireless coverage requirements and the growing influx= of mobile data traffic, a conventional macrocell based cellular network de= ployment is not deemed to be a sufficient solution to address the coverage = and capacity needs of today=92s wireless subscribers. Mobile operators are thus increasing their investments in Heterogeneous Net= work or HetNet infrastructure such as strategically deployed small cells, c= arrier Wi-Fi and DAS (Distributed Antenna Systems), to cope with growing ca= pacity and coverage requirements. Adding further to the heterogeneity is th= e shift towards a C-RAN (Centralized RAN) architecture, which centralizes b= aseband functionality to be shared across a large number of distributed rad= io nodes. In comparison to standalone clusters of base stations, C-RAN prov= ides significant performance and economic benefits such as baseband pooling= , enhanced coordination between cells, virtualization, network extensibilit= y and energy efficiency. Driven by the thriving ecosystem, we expect small cell, carrier Wi-Fi, C-RA= N and DAS investments to account for nearly $13 Billion by the end of 2016.= The market is further expected to grow at a CAGR of 15% between 2016 and 2= 020, as mobile operators remain committed to tackle the continued growth of= mobile data traffic and evolving coverage requirements. The =93HetNet Ecosystem (Small Cells, Carrier Wi-Fi, C-RAN & DAS): 2016 =96= 2030 =96 Opportunities, Challenges, Strategies & Forecasts=94 report prese= nts an in-depth assessment of the HetNet ecosystem including enabling techn= ologies, key trends, market drivers, challenges, standardization, regulator= y landscape, deployment models, use cases, vertical markets, operator case = studies, opportunities, future roadmap, value chain, ecosystem player profi= les and strategies. The report also presents forecasts for HetNet infrastru= cture investments from 2016 till 2030. The forecasts cover 6 individual sub= markets and 6 regions. The report comes with an associated Excel datasheet suite covering quantita= tive data from all numeric forecasts presented in the report. Key Findings: The report has the following key findings: SNS Research estimates that global infrastructure investments on small cell= s, carrier Wi-Fi, C-RAN and DAS will reach nearly $13 Billion by the end of= 2016, as mobile operators remain committed to tackle the continued growth = of mobile data traffic and evolving coverage requirements Small cell and C-RAN solutions are beginning to converge as small cell OEMs= seek to capitalize on the benefits of centralized coordination for in-buil= ding and enterprise coverage Despite opposition from the Wi-Fi community, unlicensed LTE small cell ship= ments are beginning to gain traction, with shipment revenues potentially re= aching $220 Million by the end of 2020 The vendor ecosystem is gradually consolidating with several prominent acqu= isitions such as Nokia=92s acquisition of French rival Alcatel-Lucent and C= ommScope=92s acquisition of small cell specialist Airvana Topics Covered: The report covers the following topics: HetNet ecosystem Market drivers and barriers Enabling technologies and key architectural components for small cells, car= rier Wi-Fi, C-RAN and DAS Key trends including SCaaS (Small Cells as a Service), unlicensed small cel= ls, virtualization, baseband functional splitting, enterprise RAN and publi= c safety/military small cells Small cell backhaul and C-RAN fronthaul technologies Integration, offloading and SON (Self-Organizing Network) technologies HetNet deployment models, use cases and vertical markets Case studies of over 30 mobile operator HetNet deployments Regulatory landscape and standardization Industry roadmap and value chain Profiles and strategies of over 350 leading ecosystem players including Het= Net infrastructure vendors and enabling technology providers Strategic recommendations for HetNet infrastructure vendors and mobile oper= ators Market analysis and forecasts from 2016 till 2030 Forecast Segmentation: Market forecasts are provided for each of the following submarkets and thei= r subcategories: Small Cells Air Interface Technology Segmentation 2G & 3G LTE 5G Deployment Model Segmentation Indoor Outdoor Use Case Segmentation Residential Enterprise Urban Rural & Suburban Cell Size Segmentation Femtocells Picocells Microcells Small Cell Backhaul Technology Segmentation DSL Ethernet Microwave Millimeter Wave Satellite Fiber & Others Carrier Wi-Fi Submarket Segmentation Access Points Access Point Controllers Integration Approach Segmentation Standalone Wi-Fi Hotspots Managed Wi-Fi Offload C-RAN Air Interface Technology Segmentation 3G & LTE 5G Deployment Model Segmentation Indoor Outdoor Submarket Segmentation BBUs (Baseband Units) RRHs (Remote Radio Heads) C-RAN Fronthaul Technology Segmentation Dedicated Fiber WDM (Wavelength Division Multiplexing) OTN (Optical Transport Network) PON (Passive Optical Network) Ethernet Microwave Millimeter Wave DAS Deployment Model Segmentation Indoor Outdoor Regional Markets Asia Pacific Eastern Europe Latin & Central America Middle East & Africa North America Western Europe Report Pricing: =20 Single User License: USD 2,500 Company Wide License: USD 3,500 Ordering Process: Please contact Andy Silva on andy.silva@snsreports.com Provide the following information: 1. Report Title - 2. Report License - (Single User/Company Wide) 3. Name - 4. Email - 5. Job Title - 6. Company - 7. Invoice Address - Please contact me if you have any questions, or wish to purchase a copy. Ta= ble of contents and List of figures mentioned below for your better inside. I look forward to hearing from you. Kind Regards =20 Andy Silva Marketing Executive Signals and Systems Telecom andy.silva@snsreports.com =20 =20 =20 To unsubscribe send an email with unsubscribe in the subject line to: remov= e@snsreports.com From owner-freebsd-ppc@freebsd.org Thu Apr 14 20:41:50 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5967AECB82; Thu, 14 Apr 2016 20:41:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C52AD19CF; Thu, 14 Apr 2016 20:41:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [IPv6:::1]) by freefall.freebsd.org (Postfix) with ESMTP id B3F4319A2; Thu, 14 Apr 2016 20:41:50 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from mail.xzibition.com (localhost [172.31.3.2]) by mail.xzibition.com (Postfix) with ESMTP id 7043A20979; Thu, 14 Apr 2016 20:41:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at mail.xzibition.com Received: from mail.xzibition.com ([172.31.3.2]) by mail.xzibition.com (mail.xzibition.com [172.31.3.2]) (amavisd-new, port 10026) with LMTP id iKWfLe5EqKD4; Thu, 14 Apr 2016 20:41:47 +0000 (UTC) Subject: Re: Fwd: 11.0: head/lib/libsysdecode/Makefile for . . ./libsoft/usr/include uses CPP when XCPP needed? [Makefile.libcompat issue] DKIM-Filter: OpenDKIM Filter v2.9.2 mail.xzibition.com 1116020974 To: Mark Millard , FreeBSD Current , FreeBSD PowerPC ML References: <3A6ED16B-F941-41FC-B844-50292894D5F4@dsl-only.net> <050EC0FA-21F9-4EAB-8771-B0F6E9DEE087@dsl-only.net> <9952A60C-C3F1-40C3-AEAE-96AF6CA6E829@dsl-only.net> <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> Cc: Bryan Drewery From: Bryan Drewery Openpgp: id=F9173CB2C3AAEA7A5C8A1F0935D771BB6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Organization: FreeBSD Message-ID: <5710008C.6030602@FreeBSD.org> Date: Thu, 14 Apr 2016 13:41:48 -0700 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.7.2 MIME-Version: 1.0 In-Reply-To: <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Ic6V6m0o7E4gROOmdKovmr3Sfj5xMutu8" X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 20:41:51 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --Ic6V6m0o7E4gROOmdKovmr3Sfj5xMutu8 Content-Type: multipart/mixed; boundary="lD5oGMAVA2qw3j06stsHHPupd9VmEQXhU" From: Bryan Drewery To: Mark Millard , FreeBSD Current , FreeBSD PowerPC ML Cc: Bryan Drewery Message-ID: <5710008C.6030602@FreeBSD.org> Subject: Re: Fwd: 11.0: head/lib/libsysdecode/Makefile for . . ./libsoft/usr/include uses CPP when XCPP needed? [Makefile.libcompat issue] References: <3A6ED16B-F941-41FC-B844-50292894D5F4@dsl-only.net> <050EC0FA-21F9-4EAB-8771-B0F6E9DEE087@dsl-only.net> <9952A60C-C3F1-40C3-AEAE-96AF6CA6E829@dsl-only.net> <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> In-Reply-To: <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> --lD5oGMAVA2qw3j06stsHHPupd9VmEQXhU Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable On 4/6/2016 1:14 PM, Mark Millard wrote: > The below forwards an example of a possibly more general issue not nece= ssarily limited to arm context of the example: in a cross compile context= the host CPP is in use via Makefile.libcompat not involving "${XCPP}" an= d so various macro checks for the target context fail to work. >=20 > [The below and the material leading up to it was originally posted to f= reebsd-arm.] >=20 > =3D=3D=3D > Mark Millard > markmi at dsl-only.net >=20 > On 2016-Apr-4, at 2:02 PM, Mark Millard wrote:= >=20 > As a fix for >=20 >>> --- all_subdir_lib/libsysdecode --- >>> In file included from :17: >>> In file included from /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/in= clude/dev/nvme/nvme.h:36: >>> In file included from /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/in= clude/sys/param.h:135: >>> In file included from /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/in= clude/machine/param.h:49: >>> /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/acle-com= pat.h:182:4: error: Unable to determine architecture version. >>> # error Unable to determine architecture version. >>> ^ >=20 > I tested building an amd64 -> arm cross-build based on >=20 >> # svnlite diff Makefile.libcompat >> Index: Makefile.libcompat >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >> --- Makefile.libcompat (revision 297514) >> +++ Makefile.libcompat (working copy) >> @@ -90,6 +90,7 @@ >> DTRACE=3D"${LIB$COMPATDTRACE:U${DTRACE}}" >> LIBCOMPATWMAKEFLAGS+=3D CC=3D"${XCC} ${LIBCOMPATCFLAGS}" \ >> CXX=3D"${XCXX} ${LIBCOMPATCFLAGS} ${LIBCOMPATCXXFLAGS}" \ >> + CPP=3D"${XCPP}" \ >> DESTDIR=3D${LIBCOMPATTMP} \ >> -DNO_CPU_CFLAGS \ >> MK_CTF=3Dno \ >=20 > and it completed without getting an "error:". So this addition to Makef= ile.libcompat may be one option for a fix. >=20 Yes this is needed. Please try this patch though: https://people.freebsd.org/~bdrewery/patches/libcompat-xcpp.diff --=20 Regards, Bryan Drewery --lD5oGMAVA2qw3j06stsHHPupd9VmEQXhU-- --Ic6V6m0o7E4gROOmdKovmr3Sfj5xMutu8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAEBAgAGBQJXEACMAAoJEDXXcbtuRpfPiDMH/0hjfJsKoqBE4KPLWICRUyD+ 3o1sq8DHR29mP0SVuE+TKI4yFxjVHiDaJgzHks6QbMhQ1+xL2w1xsV9WUSe4S1Av X32+czAea1cerM+jk9zB8gTQsLoiv8GFBdtkofUzxf0qHX/2cGn6LGyQbElj5UsV dZxPmRrOO0IuWJHUQ5z0fzuFlcowcqUSoOSdhvt2NKNmYtv4guHALcwrQDvbUXgw tCjtsbeW1mQU+fFAMF1+IgPPC4T5ZrLizHsR5P4oh7ctYaWyEQ3sWCozDfyr6j6k WNEgd5PSVYtwGApWLkoag5d68kdgGXgoHQ4bT02AT8O3FEgPlqXDVAZmPDXZpzs= =yuGO -----END PGP SIGNATURE----- --Ic6V6m0o7E4gROOmdKovmr3Sfj5xMutu8-- From owner-freebsd-ppc@freebsd.org Thu Apr 14 22:00:51 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F761AECC92 for ; Thu, 14 Apr 2016 22:00:51 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: from asp.reflexion.net (outbound-mail-211-160.reflexion.net [208.70.211.160]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 00D3A1E35 for ; Thu, 14 Apr 2016 22:00:50 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: (qmail 5367 invoked from network); 14 Apr 2016 21:54:10 -0000 Received: from unknown (HELO rtc-sm-01.app.dca.reflexion.local) (10.81.150.1) by 0 (rfx-qmail) with SMTP; 14 Apr 2016 21:54:10 -0000 Received: by rtc-sm-01.app.dca.reflexion.local (Reflexion email security v7.90.3) with SMTP; Thu, 14 Apr 2016 17:54:14 -0400 (EDT) Received: (qmail 6885 invoked from network); 14 Apr 2016 21:54:14 -0000 Received: from unknown (HELO iron2.pdx.net) (69.64.224.71) by 0 (rfx-qmail) with SMTP; 14 Apr 2016 21:54:14 -0000 X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network Received: from [192.168.1.8] (c-76-115-7-162.hsd1.or.comcast.net [76.115.7.162]) by iron2.pdx.net (Postfix) with ESMTPSA id F28E31C4078; Thu, 14 Apr 2016 14:54:04 -0700 (PDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: 11.0: head/lib/libsysdecode/Makefile for . . ./libsoft/usr/include uses CPP when XCPP needed? [Makefile.libcompat issue] From: Mark Millard In-Reply-To: <5710008C.6030602@FreeBSD.org> Date: Thu, 14 Apr 2016 14:54:08 -0700 Cc: FreeBSD Current , FreeBSD PowerPC ML Content-Transfer-Encoding: quoted-printable Message-Id: References: <3A6ED16B-F941-41FC-B844-50292894D5F4@dsl-only.net> <050EC0FA-21F9-4EAB-8771-B0F6E9DEE087@dsl-only.net> <9952A60C-C3F1-40C3-AEAE-96AF6CA6E829@dsl-only.net> <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> <5710008C.6030602@FreeBSD.org> To: Bryan Drewery X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Apr 2016 22:00:51 -0000 This will take me a while. I'm trying 2 or more builds, all from amd64 context: TARGET_ARCH=3Damd64 TARGET_ARCH=3Darmv6 (with my rpi2 armv7a tailoring in src.conf) possibly TARGET_ARC=3Dpowerpc64 (without lib32) or powerpc (which has no = lib32 or libsoft option) I'm doing this because my personal work arounds have been to have an = additional line that I'd adjust: For TARGET_ARCH=3Damd64: #LIBCOMPATWMAKEFLAGS+=3D CPP=3D"${XCPP}" For TARGET_ARCH=3Darmv6: LIBCOMPATWMAKEFLAGS+=3D CPP=3D"${XCPP}" So: commented out vs. not. amd64 did not work with the ${XCPP} use = because it depended on a not being limited to the x86 during its lib32 = processing. See = https://lists.freebsd.org/pipermail/freebsd-arm/2016-April/013663.html = for more information. Without the "#" for amd64 I got (grep of the log): > ioctl.c:472:18: error: use of undeclared identifier 'CCISS_PASSTHRU32' > ioctl.c:1186:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_32' > ioctl.c:1190:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_TRUNC_32' > ioctl.c:1196:18: error: use of undeclared identifier = 'IPMICTL_SEND_COMMAND_32' > ioctl.c:1394:18: error: use of undeclared identifier = 'MPTIO_RAID_ACTION32' > ioctl.c:1398:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_HEADER32' > ioctl.c:1402:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_PAGE32' > ioctl.c:1406:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_HEADER32' > ioctl.c:1410:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_PAGE32' > ioctl.c:1414:18: error: use of undeclared identifier = 'MPTIO_WRITE_CFG_PAGE32' Of course since I omitted ${LIBCOMPATCFLAGS} my earlier results might = not apply to your change. I'm trying these on 11.0-CURRENT -r297769 . Let me know if I should use = something more recent for some reason. =3D=3D=3D Mark Millard markmi at dsl-only.net On 2016-Apr-14, at 1:41 PM, Bryan Drewery = wrote: On 4/6/2016 1:14 PM, Mark Millard wrote: > The below forwards an example of a possibly more general issue not = necessarily limited to arm context of the example: in a cross compile = context the host CPP is in use via Makefile.libcompat not involving = "${XCPP}" and so various macro checks for the target context fail to = work. >=20 > [The below and the material leading up to it was originally posted to = freebsd-arm.] >=20 > =3D=3D=3D > Mark Millard > markmi at dsl-only.net >=20 > On 2016-Apr-4, at 2:02 PM, Mark Millard = wrote: >=20 > As a fix for >=20 >>> --- all_subdir_lib/libsysdecode --- >>> In file included from :17: >>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/dev/nvme/nvme.h:36: >>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/sys/param.h:135: >>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/param.h:49: >>> = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/acle-compat.h= :182:4: error: Unable to determine architecture version. >>> # error Unable to determine architecture version. >>> ^ >=20 > I tested building an amd64 -> arm cross-build based on >=20 >> # svnlite diff Makefile.libcompat >> Index: Makefile.libcompat >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >> --- Makefile.libcompat (revision 297514) >> +++ Makefile.libcompat (working copy) >> @@ -90,6 +90,7 @@ >> DTRACE=3D"${LIB$COMPATDTRACE:U${DTRACE}}" >> LIBCOMPATWMAKEFLAGS+=3D CC=3D"${XCC} ${LIBCOMPATCFLAGS}" \ >> CXX=3D"${XCXX} ${LIBCOMPATCFLAGS} ${LIBCOMPATCXXFLAGS}" = \ >> + CPP=3D"${XCPP}" \ >> DESTDIR=3D${LIBCOMPATTMP} \ >> -DNO_CPU_CFLAGS \ >> MK_CTF=3Dno \ >=20 > and it completed without getting an "error:". So this addition to = Makefile.libcompat may be one option for a fix. >=20 Yes this is needed. Please try this patch though: https://people.freebsd.org/~bdrewery/patches/libcompat-xcpp.diff --=20 Regards, Bryan Drewery From owner-freebsd-ppc@freebsd.org Fri Apr 15 07:48:29 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54390AED6E3 for ; Fri, 15 Apr 2016 07:48:29 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: from asp.reflexion.net (outbound-mail-211-158.reflexion.net [208.70.211.158]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 16A521656 for ; Fri, 15 Apr 2016 07:48:28 +0000 (UTC) (envelope-from markmi@dsl-only.net) Received: (qmail 29079 invoked from network); 15 Apr 2016 07:48:50 -0000 Received: from unknown (HELO mail-cs-01.app.dca.reflexion.local) (10.81.19.1) by 0 (rfx-qmail) with SMTP; 15 Apr 2016 07:48:50 -0000 Received: by mail-cs-01.app.dca.reflexion.local (Reflexion email security v7.90.3) with SMTP; Fri, 15 Apr 2016 03:48:52 -0400 (EDT) Received: (qmail 8432 invoked from network); 15 Apr 2016 07:48:52 -0000 Received: from unknown (HELO iron2.pdx.net) (69.64.224.71) by 0 (rfx-qmail) with SMTP; 15 Apr 2016 07:48:52 -0000 X-No-Relay: not in my network X-No-Relay: not in my network X-No-Relay: not in my network Received: from [192.168.1.8] (c-76-115-7-162.hsd1.or.comcast.net [76.115.7.162]) by iron2.pdx.net (Postfix) with ESMTPSA id 9971F1C4075; Fri, 15 Apr 2016 00:48:25 -0700 (PDT) Content-Type: text/plain; charset=windows-1252 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: 11.0: head/lib/libsysdecode/Makefile for . . ./libsoft/usr/include uses CPP when XCPP needed? [Makefile.libcompat issue] From: Mark Millard In-Reply-To: Date: Fri, 15 Apr 2016 00:48:25 -0700 Cc: FreeBSD Current , FreeBSD PowerPC ML Content-Transfer-Encoding: quoted-printable Message-Id: <13E62933-9472-43C1-B766-7AD9707DC1CC@dsl-only.net> References: <3A6ED16B-F941-41FC-B844-50292894D5F4@dsl-only.net> <050EC0FA-21F9-4EAB-8771-B0F6E9DEE087@dsl-only.net> <9952A60C-C3F1-40C3-AEAE-96AF6CA6E829@dsl-only.net> <6311C740-362F-45AE-9044-B72E61FC04C9@dsl-only.net> <5710008C.6030602@FreeBSD.org> To: Bryan Drewery X-Mailer: Apple Mail (2.3124) X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Apr 2016 07:48:29 -0000 On 2016-Apr-14, at 1:41 PM, Bryan Drewery = wrote: > . . .Please try this patch though: >=20 > https://people.freebsd.org/~bdrewery/patches/libcompat-xcpp.diff So far so good. . . TARGET_ARCH=3Damd64 hosted on amd64: buildworld/buildkernel built = without reporting any errors. TARGET_ARCH=3Darmv6 hosted on amd64: buildworld/buildkernel built = without reporting any errors. (src.conf tailored to targeting rpi2's = armv7a more specifically.) TARGET_ARCH=3Dpowerpc hosted on amd64 having clang bootstrap a gcc 4.2.1 = based buildworld/buildkernel (clang not built): built without reporting = any errors. TARGET_ARCH=3Dpowerpc hosted on powerpc having clang just buildworld (no = buildkernel): built without reporting any errors. (This environment = requires workarounds such as signal handling changes --and c++ = exceptions do not work. I've never gotten so far as to have workarounds = for buildkernel. gcc 4.2.1 not built.) TARGET_ARCH=3Dpowerpc64 hosted on powerpc64 having a = powerpc64-xtoolchain-gcc/powerpc64-gcc based buildworld/buildkernel with = a LIB32 built (a system that contains an unused clang/clang++, gcc4.2.1 = not built): built without reporting any errors. (Getting powerpc64-gcc = to install on a powerpc64 context requires workarounds because it is not = a true cross compile context. I've never had a gcc after gcc 4.2.1 build = the LIB32 such that it actually worked when used.) Still in process: TARGET_ARCH=3Dpowerpc64 hosted on amd64 having a = powerpc64-xtoolchain-gcc/power-gcc based buildworld/buildkernel with a = LIB32 built (a system that contains an unused clang/clang++, gcc4.2.1 = not built): Still in process. (I've never had a gcc after gcc 4.2.1 = build the LIB32 such that it actually worked when used.) TARGET_ARCH=3Dpowerpc64 hosted on powerpc64 having a = powerpc64-xtoolchain-gcc/power-gcc based buildworld/buildkernel without = LIB32 (and that contains an unused clang/clang++, gcc4.2.1 not built): = Still in process. (Getting powerpc64-gcc to install on a powerpc64 = context requires workarounds because it is not a true cross compile = context.) =3D=3D=3D Mark Millard markmi at dsl-only.net Older material. . . On 2016-Apr-14, at 2:54 PM, Mark Millard wrote: > This will take me a while. >=20 > I'm trying 2 or more builds, all from amd64 context: >=20 > TARGET_ARCH=3Damd64 > TARGET_ARCH=3Darmv6 (with my rpi2 armv7a tailoring in src.conf) > possibly TARGET_ARC=3Dpowerpc64 (without lib32) or powerpc (which has = no lib32 or libsoft option) >=20 > I'm doing this because my personal work arounds have been to have an = additional line that I'd adjust: >=20 > For TARGET_ARCH=3Damd64: #LIBCOMPATWMAKEFLAGS+=3D CPP=3D"${XCPP}" > For TARGET_ARCH=3Darmv6: LIBCOMPATWMAKEFLAGS+=3D CPP=3D"${XCPP}" >=20 > So: commented out vs. not. amd64 did not work with the ${XCPP} use = because it depended on a not being limited to the x86 during its lib32 = processing. >=20 > See = https://lists.freebsd.org/pipermail/freebsd-arm/2016-April/013663.html = for more information. Without the "#" for amd64 I got (grep of the log): >=20 >> ioctl.c:472:18: error: use of undeclared identifier = 'CCISS_PASSTHRU32' >> ioctl.c:1186:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_32' >> ioctl.c:1190:18: error: use of undeclared identifier = 'IPMICTL_RECEIVE_MSG_TRUNC_32' >> ioctl.c:1196:18: error: use of undeclared identifier = 'IPMICTL_SEND_COMMAND_32' >> ioctl.c:1394:18: error: use of undeclared identifier = 'MPTIO_RAID_ACTION32' >> ioctl.c:1398:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_HEADER32' >> ioctl.c:1402:18: error: use of undeclared identifier = 'MPTIO_READ_CFG_PAGE32' >> ioctl.c:1406:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_HEADER32' >> ioctl.c:1410:18: error: use of undeclared identifier = 'MPTIO_READ_EXT_CFG_PAGE32' >> ioctl.c:1414:18: error: use of undeclared identifier = 'MPTIO_WRITE_CFG_PAGE32' >=20 > Of course since I omitted ${LIBCOMPATCFLAGS} my earlier results might = not apply to your change. >=20 > I'm trying these on 11.0-CURRENT -r297769 . Let me know if I should = use something more recent for some reason. >=20 > =3D=3D=3D > Mark Millard > markmi at dsl-only.net >=20 On 2016-Apr-14, at 1:41 PM, Bryan Drewery = wrote: >=20 > On 4/6/2016 1:14 PM, Mark Millard wrote: >> The below forwards an example of a possibly more general issue not = necessarily limited to arm context of the example: in a cross compile = context the host CPP is in use via Makefile.libcompat not involving = "${XCPP}" and so various macro checks for the target context fail to = work. >>=20 >> [The below and the material leading up to it was originally posted to = freebsd-arm.] >>=20 >> =3D=3D=3D >> Mark Millard >> markmi at dsl-only.net >>=20 >> On 2016-Apr-4, at 2:02 PM, Mark Millard = wrote: >>=20 >> As a fix for >>=20 >>>> --- all_subdir_lib/libsysdecode --- >>>> In file included from :17: >>>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/dev/nvme/nvme.h:36: >>>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/sys/param.h:135: >>>> In file included from = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/param.h:49: >>>> = /usr/obj/clang/arm.armv6/usr/src/libsoft/usr/include/machine/acle-compat.h= :182:4: error: Unable to determine architecture version. >>>> # error Unable to determine architecture version. >>>> ^ >>=20 >> I tested building an amd64 -> arm cross-build based on >>=20 >>> # svnlite diff Makefile.libcompat >>> Index: Makefile.libcompat >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >>> --- Makefile.libcompat (revision 297514) >>> +++ Makefile.libcompat (working copy) >>> @@ -90,6 +90,7 @@ >>> DTRACE=3D"${LIB$COMPATDTRACE:U${DTRACE}}" >>> LIBCOMPATWMAKEFLAGS+=3D CC=3D"${XCC} ${LIBCOMPATCFLAGS}" \ >>> CXX=3D"${XCXX} ${LIBCOMPATCFLAGS} ${LIBCOMPATCXXFLAGS}" = \ >>> + CPP=3D"${XCPP}" \ >>> DESTDIR=3D${LIBCOMPATTMP} \ >>> -DNO_CPU_CFLAGS \ >>> MK_CTF=3Dno \ >>=20 >> and it completed without getting an "error:". So this addition to = Makefile.libcompat may be one option for a fix. >>=20 >=20 > Yes this is needed. Please try this patch though: >=20 > https://people.freebsd.org/~bdrewery/patches/libcompat-xcpp.diff >=20 >=20 > --=20 > Regards, > Bryan Drewery >=20 From owner-freebsd-ppc@freebsd.org Fri Apr 15 20:14:01 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 21C0DAEEE79 for ; Fri, 15 Apr 2016 20:14:01 +0000 (UTC) (envelope-from peter.turay@vgtelecomreports.com) Received: from smtp.vgtelecomreports.com (smtp.vgtelecomreports.com [202.0.103.20]) by mx1.freebsd.org (Postfix) with ESMTP id 199AE19B4 for ; Fri, 15 Apr 2016 20:13:57 +0000 (UTC) (envelope-from peter.turay@vgtelecomreports.com) X-SmarterMail-Authenticated-As: admin@vgtelecomreports.com DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; d=vgtelecomreports.com; s=smtp; h=received:from:to:message-id:subject:date:mime-version:reply-to :content-type; b=FEqWcyO8l1Ss83HP2KNPOAFKOezW5+7+/upEOeJjNWBGDcf8epe0Zc+jcaiq/1Zp0 Q4eK7n3tqbpx5rIxbi2QRVztQmwBZr4dro8lTMdf54Ay8RLI3T5vETwCBzpTdO9v/ A6d4NsvN+FFFq3gMvaTj0e9qPhjebbTIi9F7374bM= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=vgtelecomreports.com; s=smtp; h= content-type:reply-to:mime-version:date:subject:message-id:to:from; bh=wNllsjNK7IFGfAC8ohG45/u4duc2dERs1vD9Hi37GFs=; b=EWO+IRz1kfqBjG+6vzMDtaB0qdkFAev4GjssCwAGoDuhY9xiDIkAhQ6AEwOWadBOf 7sh+A+o22i/knHVIURdwA+YrndeGwZiI5bsdFfGaMFQiZ6ADnfzbYgcPmNJCCuq/v b7vZ2T6SvVYBE4fox78OhZazoi1H8VCwstsO8bPx4= Received: from WIN-ASQ29B6R1EP (WIN-ASQ29B6R1EP [202.0.103.127]) by smtp.vgtelecomreports.com with SMTP; Fri, 15 Apr 2016 13:13:53 +0100 From: Peter Turay To: freebsd-ppc@freebsd.org Message-Id: <20160415131353.112893869@vgtelecomreports.com> Subject: Report - Industrial Internet Market Report 2016-2021 Date: Fri, 15 Apr 2016 13:13:53 +0100 MIME-Version: 1.0 Reply-To: peter.turay@vgtelecomreports.com Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Apr 2016 20:14:01 -0000 Industrial Internet Market Report 2016-2021 Top Companies & Forecasts For The Industrial Internet of Things (IIoT) in Aerospace & Defence, Healthcare, Transportation, Energy, Agriculture, Manufacturing & Retail Cyber Report Publication date: 15th March 2016 Number of Pages: 288 ------------------------------------------------------------ Visiongain’s brand new report offers comprehensive analysis of expanding Industrial Internet technologies, as the Industrial Internet market is assessed that to achieve revenues of $283bn in 2016. Questions to be answered include: How is the Industrial Internet market evolving and what are the drivers and restraints of its market dynamics? Which individual technologies will prevail and how will these shifts be responded to? Who are the leading Industrial Internet players, their prospects, and how will political and regulatory factors influence regional Industrial Internet markets and submarkets between 2016-2021? How will each Industrial Internet submarket segment grow over the forecast period, and how much sales will these submarkets account for in 2021? How will national market shares change and which nation will be the leading market player by 2021? How will the sector evolve as alliances form during the period between 2016 and 2021? Report Scope: 1) Detailed profiles of 17 leading companies operating within the Industrial Internet market: - Alphabet - ARM - AT&T - Bosch - Cisco - Emerson - Freescale - General Electric - Hewlett-Packard - IBM - Intel Corporation - Microsoft - Omron - Rockwell Automation - SAP - Schneider Electric - Siemens 2) 7 Industrial Internet submarket Forecasts & Analysis from 2016-2021 by application - Aerospace & Defence - Healthcare - Transportation - Energy - Agriculture - Manufacturing - Retail - Other 3) Discover where and how companies are investing in the Industrial Internet market. View market prospects with forecasts from 2016-2021 for the following regions and nations: - North America - Asia Pacific - Europe - Latin America - Middle East & Africa - US - China - Japan - South Korea - France - Germany - UK - Rest of the World 4) Independent analysis underpinned by an exclusive interview with a leading expert: - David Barnett, (VP of Products and Markets), RTI 5) Our overview analyses these technologies - Machine to Machine (M2M) - Sensors - Actuators - Software - Wireless - Big Data Competitive advantage This independent, 288-page report guarantees you will remain substantially informed in the marketplace. With 329 tables and figures examining the Industrial Internet market environment, our report gives you an immediate, one-stop breakdown of this market. How will you benefit from this report? - Keep your knowledge up-to-date - Reinforce your strategic decision-making with definitive, reliable market data - Learn how to exploit new technological trends - Realise your company’s full potential within the market - Understand the competitive landscape and identify potential new business opportunities & partnerships. Essential reading for anyone in the IoT sector with an interest in the Industrial Internet sector, helping you recognise important market opportunities and understand its possibilities. Order our report - Industrial Internet Market Report 2016-2021: Top Companies & Forecasts For The Industrial Internet of Things (IIoT) in Aerospace & Defence, Healthcare, Transportation, Energy, Agriculture, Manufacturing & Retail ------------------------------------------------------------ Table of Contents 1. Report Overview 1.1 Global Industrial Internet Market Overview 1.2 Global Industrial Internet Market Segmentation 1.3 Why You Should Read This Report 1.4 How This Report Delivers 1.5 Key Questions Answered by This Analytical Report Include: 1.6 Who is This Report For? 1.7 Methodology 1.7.1 Primary Research 1.7.2 Secondary Research 1.7.3 Market Evaluation & Forecasting Methodology 1.8 Frequently Asked Questions (FAQ) 1.9 Associated Visiongain Reports 1.10 About Visiongain 2. Introduction to the Industrial Internet Market 2.1 Global Industrial Internet Market Structure 2.2 The Internet of Things Definition 2.3 The Benefits of the Industrial Internet 2.4 Industrial Internet Applications 2.5 The Industrial Internet Technologies 2.5.1. M2M technology, the Backbone of the Industrial Internet Market 2.5.2 The Pivotal Role of the Cloud in the Industrial Internet 2.5.3 The importance of the Big Data in the Industrial Internet 2.5.4 Growth in the Wireless Sector 2.5.5 Sensors, Actuators and Software, the Triptych of the Embedded Systems 2.5.5.1 The Sensors 2.5.5.2 The Actuators 2.5.5.3 The Software 2.6 The Industrial Internet Value Chain 2.7 The Four Phases of the Industrial Internet Evolution 2.8 Cyber Security Concerns over the Industrial Internet 2.9 The Industrial Internet Consortium (IIC) 3. Global Industrial Internet Market 2016-2021 3.1 Industrial Internet Market Definition 3.2 Regional Industrial Internet Market Forecast 2016-2021 3.3 Regional Industrial Internet Market Share Breakdowns 2016-2021 3.4 Regional Industrial Internet Market Analysis 3.5 The Different Approaches of the Industrial Internet across the European Union 3.6 Global Industrial Internet Drivers & Restraints 2016 4. Global Industrial Internet Submarket Forecast 2016-2021 4.1 Global Industrial Internet Aerospace and Defence Forecast 2016-2021 4.2 Global Industrial Internet Agriculture Forecast 2016-2021 4.3 Global Industrial Internet Energy Forecast 2016-2021 4.4 Global Industrial Internet Healthcare Forecast 2016-2021 4.5 Global Industrial Internet Manufacturing Forecast 2016-2021 4.6 Global Industrial Internet Retail Forecast 2016-2021 4.7 Global Industrial Internet Transportation Forecast 2016-2021 4.8 Global Industrial Internet Others Forecast 2016-2021 5. Leading National Industrial Internet Market Forecast 2016-2021 5.1 Leading National Industrial Internet Markets Share Forecast 2016-2021 5.2 China Industrial Internet Market Forecast 2016-2021 5.2.1 The Internet Plus, the Chinese Approach to the Industrial Internet 5.2.2 Industrial Internet Market Drivers & Restraints 5.3 France Industrial Internet Market Forecast 2016-2021 5.3.1 The Industrie du Futur, the Industrial Internet made in France 5.3.2 Industrial Internet Market Drivers & Restraints 5.4 Germany Industrial Internet Market Forecast 2016-2021 5.4.1 The INDUSTRIE 4.0, the Industrial Internet Made in Germany 5.4.2 Industrial Internet Market Drivers & Restraints 5.5 Japan Industrial Internet Market Forecast 2016-2021 5.5.1 Monodzukuri, the Industrial Internet Market in Japan 5.5.2 Industrial Internet Market Drivers & Restraints 5.6 South Korea Industrial Internet Market Forecast 2016-2021 5.6.1 The Manufacturing Industry Innovation 3.0, the South Korean Industrial Internet 5.6.2 Industrial Internet Market Drivers & Restraints 5.7 UK Industrial Internet Market Forecast 2016-2021 5.7.1 The IoTUK, the Industrial Internet Plan in the UK 5.7.2 Industrial Internet Market Drivers & Restraints 5.8 US Industrial Internet Market Forecast 2016-2021 5.8.1 The US Investment in Smart Cities 5.8.2 The US approach to the Industrial Internet Market 5.8.3 Industrial Internet Market Drivers & Restraints 5.9 ROW Industrial Internet Market Forecast 2016-2021 6. SWOT Analysis of the Industrial Internet Market 2016-2021 1.2 Chapter Breakdown 1.3 Research and Analysis Methods 1.4 Scope of this Report 7. Expert Opinion 7.1 David Barnett, Vice President of Products and Markets, Real Time Innovations (RTI) 7.1.1 RTI’s Approach to the Industrial Internet 7.1.2 Difference Between the Internet of Things and the Industrial Internet 7.1.3 Size And Potential Of The Industrial Internet 7.1.4 Drivers And Restraints of The Industrial Internet Market 7.1.5 Will The Lack of International Standards Restrain The Industrial Internet Market? 7.1.6 The Drivers of The Industrial Internet Market 7.1.7 The Industrial Internet In The Next Five Years 7.1.8 RTI’s Involvement in the Industrial Internet Market 7.1.9 What Are Clients Looking For? 7.1.10 What Does RTI Offer That is Unique? 7.1.11 Factors Influencing the Design of RTI Products 7.1.12 RTI’s Approach to Cyber Security 7.1.13 Which Regional Industrial Internet Markets Are Of Most Interest? 8. Leading Industrial Internet Companies 8.1 Leading Industrial Internet Company Sales Analysis 2016 8.2 Alphabet 8.2.1 Alphabet Total Company Sales 2010-2015 8.2.2 Alphabet Sales by Segment of Business 2010-2015 8.2.3 Alphabet Net Profit 2010-2015 8.2.4 Alphabet Cost of Research & Development 2010-2015 8.2.5 Alphabet Regional Emphasis / Focus 8.2.6 Alphabet Organisational Structure 8.2.7 Alphabet’s Role in the Industrial Internet Market 8.3 ARM 8.3.1 ARM Total Company Sales 2010-2015 8.3.2 ARM Sales by Segment of Business 2010-2015 8.3.3 ARM Net Profit 2010-2015 8.3.4 ARM Cost of Research & Development 2010-2015 8.3.5 ARM Regional Emphasis / Focus 8.3.6 ARM Organisational Structure 8.3.7 ARM’s Role in the Industrial Internet Market 8.4 AT&T 8.4.1 AT&T Total Company Sales 2010-2014 8.4.2 AT&T Sales by Segment of Business 2010-2014 8.4.3 AT&T Net Profit 2010-2014 8.4.4 AT&T Organisational Structure 8.4.5 AT&T’s Role in the Industrial Internet Market 8.5 Bosch 8.5.1 Bosch Total Company Sales 2010-2014 8.5.2 Bosch Sales by Segment of Business 2010-2014 8.5.3 Bosch Net Profit 2010-2014 8.5.4 Bosch Cost of Research & Development 2010-2014 8.5.5 Bosch Regional Emphasis / Focus 8.5.6 Bosch Organisational Structure 8.5.7 Bosch’s Role in the Industrial Internet Market 8.6 Cisco 8.6.1 Cisco Total Company Sales 2010-2015 8.6.2 Cisco Sales by Segment of Business 2010-2015 8.6.3 Cisco Net Profit 2010-2015 8.6.4 Cisco Cost of Research & Development 2010-2015 8.6.5 Cisco Regional Emphasis / Focus 8.6.6 Cisco Organisational Structure 8.6.7 Cisco’s Role in the Industrial Internet Market 8.7 Emerson Electric 8.7.1 Emerson Total Company Sales 2010-2015 8.7.2 Emerson Sales by Segment of Business 2010-2015 8.7.3 Emerson Net Profit 2010-2015 8.7.4 Emerson Cost of Research & Development 2010-2015 8.7.5 Emerson Regional Emphasis / Focus 8.7.6 Emerson Organisational Structure 8.7.7 Emerson’s Role in the Industrial Internet Market 8.8 Freescale (NXP) 8.8.1 Freescale Total Company Sales 2010-2014 8.8.2 Freescale Sales by Segment of Business 2010-2014 8.8.3 Freescale Net Profit/Loss 2010-2014 8.8.4 Freescale Cost of Research & Development 2010-2014 8.8.5 Freescale Regional Emphasis / Focus 8.8.6 Freescale Organisational Structure 8.8.7 Freescale’s Role in the Industrial Internet Market 8.9 General Electric 8.9.1 General Electric Total Company Sales 2011-2015 8.9.2 General Electric Sales by Segment of Business 2011-2015 8.9.3 General Electric Net Profit/Loss 2010-2015 8.8.4 General Electric Cost of Research & Development 2010-2015 8.8.5 General Electric Regional Emphasis / Focus 8.9.6 General Electric Organisational Structure 8.9.7 General Electric’s Role in the Industrial Internet Market 8.10 Hewlett-Packard 8.10.1 Hewlett-Packard Total Company Sales 2010-2015 8.10.2 Hewlett-Packard Sales by Segment of Business 2010-2015 8.10.3 Hewlett-Packard Net Profit/Loss 2010-2015 8.10.4 Hewlett-Packard Organisational Structure 8.10.5 Hewlett-Packard’s Role in the Industrial Internet Market 8.11 IBM, International Business Machines Corporation 8.11.1 IBM Total Company Sales 2010-2015 8.11.2 IBM Company Sales by Segment of Business 2010-2015 8.11.3 IBM Company Net Profit 2010-2015 8.11.4 IBM Company Cost of Research & Development 2010-2015 8.11.5 IBM Company Regional Emphasis / Focus 8.11.6 IBM Company Organisational Structure 8.11.7 IBM’s Role in the Industrial Internet Market 8.12 Intel Corporation 8.12.1 Intel Corporation Total Company Sales 2010-2015 8.12.2 Intel Corporation Sales by Segment of Business 2010-2015 8.12.3 Intel Corporation Net Profit 2010-2015 8.12.4 Intel Corporation Cost of Research & Development 2010-2015 8.12.5 Intel Corporation Regional Emphasis / Focus 8.12.6 Intel Corporation Organisational Structure 8.12.7 Intel Corporation’s Role in the Industrial Internet Market 8.13 Microsoft Corporation 8.13.1 Microsoft Corporation Total Company Sales 2010-2015 8.13.2 Microsoft Corporation Sales by Segment of Business 2012-2015 8.13.3 Microsoft Corporation Net Profit 2010-2015 8.13.4 Microsoft Corporation Cost of Research & Development 2010-2015 8.13.5 Microsoft Corporation Regional Emphasis / Focus 8.13.6 Company Organisational Structure 8.13.7 Microsoft Corporation’s Role in the Industrial Internet Market 8.14 Omron 8.14.1 Omron Total Company Sales 2010-2015 8.14.2 Omron Sales by Segment of Business 2010-2014 8.14.3 Omron Net Profit 2010-2014 8.14.4 Omron Cost of Research & Development 2010-2015 8.14.5 Omron Regional Emphasis / Focus 8.14.6 Omron Organisational Structure 8.14.7 Omron’s Role in the Industrial Internet Market 8.15 Rockwell Automation 8.15.1 Rockwell Total Company Sales 2010-2015 8.15.2 Rockwell Sales by Segment of Business 2010-2015 8.15.3 Rockwell Net Profit 2010-2015 8.15.4 Rockwell Cost of Research & Development 2010-2015 8.15.5 Rockwell Regional Emphasis / Focus 8.15.6 Rockwell Organisational Structure 8.15.7 Rockwell‘s Role in the Industrial Internet Market 8.16 SAP SE 8.16.1 SAP Total Company Sales 2010-2015 8.16.2 SAP Sales by Segment of Business 2010-2014 8.16.3 SAP Net Profit 2010-2014 8.16.4 SAP Cost of Research & Development 2010-2014 8.16.5 SAP Regional Emphasis / Focus 8.16.6 SAP Organisational Structure 8.16.7 SAP’s Role in the Industrial Internet Market 8.17 Schneider Electric 8.17.1 Schneider Electric Total Company Sales 2010-2015 8.17.2 Schneider Electric Sales by Segment of Business 2011-2015 8.17.3 Schneider Electric Net Profit 2010-2015 8.17.4 Schneider Electric Regional Emphasis / Focus 8.17.5 Schneider Electric Organisational Structure / Number of Employees 8.17.6 Schneider Electric’s Role in the Industrial Internet Market 8.18 Siemens 8.18.1 Siemens Total Company Sales 2010-2015 8.18.2 Siemens Sales by Segment of Business 2014-2015 8.18.3 Siemens Net Profit 2010-2015 8.18.4 Siemens Cost of Research & Development 2010-2015 8.18.5 Siemens Regional Emphasis / Focus 8.18.6 Siemens Organisational Structure 8.18.7 Siemens’s Role in the Industrial Internet Market 8.19 Other Major Companies Involved in the Industrial Internet Market 2016 9. Conclusions and Recommendations 9.1 Conclusion 9.2 Recommendations 10. Glossary ------------------------------------------------------------ List of Tables Table 1.1 Example of Industrial Internet Market by Regional Market Forecast 2016-2021 (US$m, AGR%, Cumulative) Table 1.2 Example of Leading National Industrial Internet Market Forecast by Submarket 2016-2021 (US$m, AGR%, Cumulative) Table 2.1 IoT Applications by Industry (Industry, IIoT Applications) Table 2.2 Industrial Internet Consortium Members Table 2.3 Industrial Internet Consortium vs. INDUSTRIE 4.0 Table 3.1 Global Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 3.2 Regional Industrial Internet Market Forecast 2015-2021 (Sales US$bn, AGR%, Cumulative) Table 3.3 Regional Industrial Internet Market Percentage Change in Market Share 2016-2021 ( % Change) Table 3.4 Global Industrial Internet Market Drivers & Restraints 2016 Table 4.1 Global Industrial Internet Submarket Forecast 2016-2021 (US$bn, AGR%, Cumulative) Table 4.2 Global Industrial Internet Aerospace and Defence Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.3 Global Industrial Internet Agriculture Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.4 Global Industrial Internet Energy Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.5 Global Industrial Internet Healthcare Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.6 Global Industrial Internet Manufacturing Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.7 Global Industrial Internet Retail Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.8 Global Industrial Internet Transportation Submarket Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 4.9 Global Industrial Internet Other Submarkets Forecast 2015-2021 (US$bn, AGR%, CAGR%, Cumulative) Table 5.1 Leading National Industrial Internet Market Forecast 2016-2021 (US$bn, AGR%, Global AGR%, Cumulative) Table 5.2 Leading National Industrial Internet Markets CAGR Forecast 2016-2021 (CAGR %) Table 5.3 China Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.4 China Industrial Internet Market Drivers & Restraints 2016 Table 5.5 France Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.6 France Industrial Internet Market Drivers & Restraints 2016 Table 5.7 Germany Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.8. GDP Worldwide in the Time of Industrial Revolutions (Date, GDP $USm) Table 5.9 Germany Industrial Internet Market Drivers & Restraints 2016 Table 5.10 Japan Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.11 Japan Industrial Internet Market Drivers & Restraints 2016 Table 5.12 South Korea Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.13 South Korea Industrial Internet Market Drivers & Restraints 2016 Table 5.14 UK Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.15 UK Industrial Internet Market Drivers & Restraints 2016 Table 5.16 US Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 5.17 US Investment in Smart Cities Industrial Internet 2015 (, Organisation/Agencies, Investment $USm, Description) Table 5.18 US Industrial Internet Market Drivers & Restraints 2016 Table 5.19 ROW Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %, CAGR%, Cumulative) Table 6 Global Industrial Internet Market SWOT Analysis 2016-2021 Table 8.1 Leading Industrial Internet Companies Sales Share 2016 ( FY2015 Total Company Sales US$m, Primary Market Specialisation) Table 8.2 Alphabet Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.2.1 Alphabet Total Company Sales 2010-2015 (US$m, AGR%) Table 8.2.2 Alphabet Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.2.3 Alphabet Net Profit 2010-2015 (US$m, AGR%) Table 8.2.4 Alphabet Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.2.5 Alphabet Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.3 ARM Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.3.1 ARM Total Company Sales 2010-2015 (US$m, AGR%) Table 8.3.2 ARM Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.3.3 ARM Net Profit 2010-2015 (US$m, AGR%) Table 8.3.4 ARM Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.3.5 ARM Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.4 AT&T Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.4.1 Company Total Company Sales 2010-2014 (US$m, AGR%) Table 8.4.2 Company Sales by Segment of Business 2010-2014 (US$m, AGR%) Table 8.4.3 Company Net Profit 2010-2014 (US$m, AGR%) Table 8.5 Bosch Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, Ticker, Website) Table 8.5.1 Bosch Total Company Sales 2010-2014 (US$m, AGR%) Table 8.5.2 Bosch Sales by Segment of Business 2010-2014 (US$m, AGR%) Table 8.5.3 Bosch Net Profit 2010-2014 (US$m, AGR%) Table 8.5.4 Bosch Cost of Research & Development 2010-2014 (US$m, AGR%) Table 8.5.5 Bosch Sales by Geographical Location 2010-2014 (US$m, AGR%) Table 8.6 Cisco Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.6.1 Cisco Total Company Sales 2010-2015 (US$m, AGR%) Table 8.6.2 Cisco Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.6.3 Cisco Net Profit 2010-2015 (US$m, AGR%) Table 8.6.4 Cisco Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.6.5 Cisco Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.7 Emerson Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.7.1 Emerson Total Company Sales 2010-2015 (US$m, AGR%) Table 8.7.2 Emerson Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.7.3 Emerson Net Profit 2010-2015 (US$m, AGR%) Table 8.7.4 Emerson Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.7.5 Emerson Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.8 Freescale Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.8.1 Freescale Total Company Sales 2010-2014 (US$m, AGR%) Table 8.8.2 Freescale Sales by Segment of Business 2010-2014 (US$m, AGR%) Table 8.8.3 Freescale Net Profit/Loss 2010-2014 (US$m, AGR%) Table 8.8.4 Freescale Cost of Research & Development 2010-2014 (US$m, AGR%) Table 8.8.5 Freescale Sales by Geographical Location 2010-2014 (US$m, AGR%) Table 8.9 General Electric Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.9.1 General Electric Total Company Sales 2011-2015 (US$m, AGR%) Table 8.9.2 General Electric Sales by Segment of Business 2011-2015 (US$m, AGR%) Table 8.9.3 General Electric Net Profit/Loss 2010-2015 (US$m, AGR%) Table 8.9.4 General Electric Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.9.5 General Electric Sales by Geographical Location 2013-2015 (US$m, AGR%) Table 8.10 Hewlett-Packard Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.10.1 Hewlett-Packard (HP) Total Company Sales 2010-2015 (US$m, AGR %) Table 8.10.2 Hewlett-Packard (HP) Sales by Segment of Business 2010-2015 (US$m, AGR %) Table 8.10.3 Hewlett-Packard Net Profit / Loss 2010-2015 (US$m) Table 8.11 IBM Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.11.1 IBM Total Company Sales 2010-2015 (US$m, AGR%) Table 8.11.2 IBM Sales by Segment of Business 2010-2015 (US$m, AGR %) Table 8.11.3 IBM Net Profit 2010-2015 (US$m, AGR%) Table 8.11.4 IBM Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.11.5 IBM Sales by Geographical Location 2010-2014 (US$m, AGR %) Table 8.12 Intel Corporation Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.12.1 Intel Corporation Total Company Sales 2010-2015 (US$m, AGR%) Table 8.12.2 Intel Corporation Sales by Segment of Business 2010-2015 (US$m, AGR %) Table 8.12.3 Intel Corporation Net Profit 2010-2015 (US$m, AGR%) Table 8.12.4 Intel Corporation Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.12.5 Intel Corporation Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.13 Microsoft Corporation Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.13.1 Microsoft Corporation Total Company Sales 2010-2015 (US$m, AGR%) Table 8.13.2 Microsoft Corporation Sales by Segment of Business 2012-2015 (US$m, AGR%) Table 8.13.3 Microsoft Corporation Net Profit 2010-2015 (US$m, AGR%) Table 8.13.4 Microsoft Corporation Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.13.5 Microsoft Corporation Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.14 Omron Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.14.1 Omron Total Company Sales 2010-2015 (US$m, AGR%) Table 8.14.2 Omron Sales by Segment of Business 2010-2014 (US$m, AGR%) Table 8.14.3 Omron Net Profit 2010-2014 (US$m, AGR%) Table 8.14.4 Omron Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.14.5 Omron Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.15 Rockwell Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.15.1 Rockwell Total Company Sales 2010-2015 (US$m, AGR%) Table 8.15.2 Rockwell Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.15.3 Rockwell Net Profit 2010-2015 (US$m, AGR%) Table 8.15.4 Rockwell Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.15.5 Rockwell Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.16 SAP Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.16.1 SAP Total Company Sales 2010-2015 (US$m, AGR%) Table 8.16.2 SAP Sales by Segment of Business 2010-2014 (US$m, AGR%) Table 8.16.3 SAP Net Profit 2010-2014 (US$m, AGR%) Table 8.16.4 SAP Cost of Research & Development 2010-2014 (US$m, AGR%) Table 8.16.5 SAP Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.17 Schneider Electric Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.17.1 Schneider Electric Total Company Sales 2010-2015 (US$m, AGR%) Table 8.17.2 Schneider Electric Sales by Segment of Business 2010-2015 (US$m, AGR%) Table 8.17.3 Schneider Electric Net Profit 2010-2015 (US$m, AGR%) Table 8.17.4 Schneider Electric Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.18 Siemens Profile 2016 (CEO, Total Company Sales US$m, Net Profit US$m, HQ, Founded, No. of Employees, IR Contact, Ticker, Website) Table 8.18.1 Siemens Total Company Sales 2010-2015 (US$m, AGR%) Table 8.18.2 Siemens Sales by Segment of Business 2014-2015 (US$m, AGR%) Table 8.18.3 Siemens Net Profit 2010-2015 (US$m, AGR%) Table 8.18.4 Siemens Cost of Research & Development 2010-2015 (US$m, AGR%) Table 8.18.5 Siemens Sales by Geographical Location 2010-2015 (US$m, AGR%) Table 8.19 Other Major Companies Involved in the Industrial Internet Market 2016 (Company, Submarket Involvement, Location) ------------------------------------------------------------ List of Figures Figure 1.1 Global Industrial Internet Market Segmentation Overview Figure 1.2 Example of Industrial Internet Market by Regional Market Share Forecast 2016, 2021 ( %Share) Figure 1.3 Example of National vs. Global Industrial Internet Market CAGR Forecast 2016, 2021, 2016-2021 (CAGR%) Figure 1.4 Example of National Industrial Internet Market by Submarket Forecast 2016-2021 (US$m, AGR %) Figure 2.1 Global Industrial Internet Market Segmentation Overview Figure 2.2 Consumer IoT vs. Industrial IoT Overview Figure 2.3 The evolution of embedded systems into the Internet of Things Figure 2.4 IIoT Value Chain Figure 3.1 Industrial Internet Representation Figure 3.2 Global Industrial Internet Market Forecast 2016-2021 (US$bn, AGR%) Figure 3.3 Industrial Internet Regional Coverage (Region) Figure 3.4 Regional Industrial Internet Market Forecast 2015-2021 (US$bn, AGR%,) Figure 3.5 Regional Industrial Internet Market AGR Forecast 2016-2021(AGR%,) Figure 3.6 Regional Industrial Internet Market Percentage Change in Market Share 2016-2021 ( % Change) Figure 3.7 Regional Industrial Internet Market Cumulative Sales 2016-2021 ($US$bn) Figure 3.8 Regional Industrial Internet Market Share Forecast 2016 (%,) Figure 3.9 Regional Cyber Security Market Share Forecast 2021 (%,) Figure 3.10 The Industrial Internet Across the European Union Figure 4.1 Global Industrial Internet Submarket AGR Forecast 2016-2021 (AGR%) Figure 4.2 Global Industrial Internet Submarket Forecast 2016-2021 (US$bn, Global AGR%) Figure 4.3 Global Industrial Internet Submarket Share 2016 ( % Share) Figure 4.4 Global Industrial Internet Submarket Share Forecast 2021 ( % Share) Figure 4.5 Global Industrial Internet Submarket Cumulative Share 2016-2021 ( % Share) Figure 4.6 Global Industrial Internet Submarket Cumulative Forecast 2016-2021 ($USbn) Figure 4.7 Global Industrial Internet Aerospace and Defence Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.8 Global Industrial Internet Agriculture Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.9 Global Industrial Internet Energy Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.10 Global Industrial Internet Healthcare Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.11 Global Industrial Internet Manufacturing Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.12 Global Industrial Internet Retail Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.13 Global Industrial Internet Transportation Submarket Forecast 2015-2021 ($USbn, AGR%) Figure 4.14 Global Industrial Internet Other Submarkets Forecast 2015-2021 ($USbn, AGR%) Figure 5.1 Global Industrial Internet Market by National Market Forecast 2016-2021 (US$bn, Global AGR%) Figure 5.2 Global Industrial Internet Market by National Market AGR Forecast 2016-2026 (AGR%) Figure 5.3 Leading National Industrial Internet Markets CAGR Forecast 2016-2021 (CAGR %) Figure 5.4 Leading National Industrial Internet Markets Share Forecast 2016 ( % Share) Figure 5.5 Leading National Industrial Internet Markets Share Forecast 2021 ( % Share) Figure 5.6 Leading National Industrial Internet Markets Cumulative Sales Share Forecast 2016-2021 ( % Share) Figure 5.7 China Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.8 China vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.9 China Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.10 France Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.11 France vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.12 France Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.13 Germany Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.14 Germany vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.15 Germany Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.16 Japan Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.17 China vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.18 China Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.19 South Korea Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.20 South Korea vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.21 South Korea Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.22 UK Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.23 UK vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.24 UK Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.25 US Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.26 US vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.27 US Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 5.28 ROW Industrial Internet Market Forecast 2016-2021 (US$bn, AGR %) Figure 5.29 ROW vs. Global Industrial Internet Market Forecast 2016-2021 ($USbn) Figure 5.30 ROW Industrial Internet Market Share Forecast 2016, 2021 ( % Share) Figure 8.2.1 Alphabet Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.2.2 Alphabet Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.2.3 Alphabet Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.2.4 Alphabet Net Profit 2010-2015 (US$m, AGR%) Figure 8.2.5 Alphabet Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.2.6 Alphabet Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.2.7 Alphabet Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.2.8 Alphabet Organisational Structure 2016 Figure 8.3.1 ARM Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.3.2 ARM Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.3.3 ARM Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.3.4 ARM Net Profit 2010-2015 (US$m, AGR%) Figure 8.3.5 ARM Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.3.6 ARM Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.3.7 ARM Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.3.8 ARM Organisational Structure 2016 Figure 8.4.1 Company Total Company Sales 2010-2014 (US$m, AGR%) Figure 8.4.2 Company Sales by Segment of Business 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.4.3 Company Sales AGR by Segment of Business 2011-2014 (AGR %) Figure 8.4.4 Company Net Profit 2010-2014 (US$m, AGR%) Figure 8.4.5 Company Organisational Structure 2016 Figure 8.5.1 Bosch Total Company Sales 2010-2014 (US$m, AGR%) Figure 8.5.2 Bosch Sales by Segment of Business 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.5.3 Bosch Sales AGR by Segment of Business 2011-2014 (AGR %) Figure 8.5.4 Bosch Net Profit 2010-2014 (US$m, AGR%) Figure 8.5.5 Bosch Cost of Research & Development 2010-2014 (US$m, AGR%) Figure 8.5.6 Bosch Sales AGR by Geographical Location 2011-2014 (AGR %) Figure 8.5.7 Bosch Sales by Geographical Location 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.5.8 Bosch Organisational Structure 2016 Figure 8.6.1 Cisco Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.6.2 Cisco Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.6.3 Cisco Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.6.4 Cisco Net Profit 2010-2015 (US$m, AGR%) Figure 8.6.5 Cisco Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.6.6 Cisco Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.6.7 Cisco Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.6.8 Cisco Organisational Structure 2016 Figure 8.7.1 Emerson Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.7.2 Emerson Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.7.3 Emerson Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.7.4 Emerson Net Profit 2010-2015 (US$m, AGR%) Figure 8.7.5 Emerson Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.7.6 Emerson Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.7.7 Emerson Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.7.8 Emerson Organisational Structure 2016 Figure 8.8.1 Freescale Total Company Sales 2010-2014 (US$m, AGR%) Figure 8.8.2 Freescale Sales by Segment of Business 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.8.3 Freescale Sales AGR by Segment of Business 2011-2014 (AGR %) Figure 8.8.4 Freescale Net Profit/Loss 2010-2014 (US$m, AGR%) Figure 8.8.5 Freescale Cost of Research & Development 2010-2014 (US$m, AGR%) Figure 8.8.6 Freescale Sales AGR by Geographical Location 2011-2014 (AGR %) Figure 8.8.7 Freescale Sales by Geographical Location 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.8.8 Freescale Organisational Structure 2016 Figure 8.9.1 General Electric Total Company Sales 2011-2015 (US$m, AGR%) Figure 8.9.2 General Electric Sales by Segment of Business 2011-2015 (US$m, Total Company Sales AGR%) Figure 8.9.3 General Electric Sales AGR by Segment of Business 2012-2015 (AGR %) Figure 8.9.4 General Electric Net Profit/Loss 2010-2015 (US$m, AGR%) Figure 8.9.5 General Electric Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.9.6 General Electric Sales by Geographical Location 2013-2015 (US$m, Total Company Sales AGR%) Figure 8.9.7 General Electric Organisational Structure 2016 Figure 8.10.1 Hewlett-Packard (HP) Total Company Sales 2010-2015 (US$m, AGR %) Figure 8.10.2 Hewlett-Packard Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.10.3 Hewlett-Packard Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.10.4 Hewlett-Packard Net Profit / Loss 2010-2015 (US$m) Figure 8.10.5 Hewlett-Packard Organisational Structure 2016 Figure 8.11.1 IBM Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.11.2 IBM Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.11.3 IBM Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.11.4 IBM Net Profit 2010-2015 (US$m, AGR%) Figure 8.11.5 IBM Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.11.6 IBM Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.11.7 IBM Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.11.8 IBM Organisational Structure 2016 Figure 8.11.9 IBM MessageSight System Figure 8.12.1 Intel Corporation Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.12.2 Intel Corporation Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.12.3 Intel Corporation Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.12.4 Intel Corporation Net Profit 2010-2015 (US$m, AGR%) Figure 8.12.5 Intel Corporation Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.12.6 Intel Corporation Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.12.7 Intel Corporation Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.12.8 Intel Corporation Organisational Structure 2016 Figure 8.12.9 Framework of Intel’s Internet of Things Solution Figure 8.13.1 Microsoft Corporation Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.13.2 Microsoft Corporation Sales by Segment of Business 2012-2015 (US$m, Total Company Sales AGR%) Figure 8.13.3 Microsoft Corporation Sales AGR by Segment of Business 2013-2015 (AGR %) Figure 8.13.4 Microsoft Corporation Net Profit 2010-2015 (US$m, AGR%) Figure 8.13.5 Microsoft Corporation Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.13.6 Microsoft Corporation Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.13.7 Microsoft Corporation Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.13.8 Microsoft Corporation Organisational Structure 2016 Figure 8.13.9 Microsoft Azure Intelligent Systems Figure 8.14.1 Omron Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.14.2 Omron Sales by Segment of Business 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.14.3 Omron Sales AGR by Segment of Business 2011-2014 (AGR %) Figure 8.14.4 Omron Net Profit 2010-2014 (US$m, AGR%) Figure 8.14.5 Omron Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.14.6 Omron Sales AGR by Geographical Location 2011-2014 (AGR %) Figure 8.14.7 Omron Sales by Geographical Location 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.14.8 Omron Organisational Structure 2016 Figure 8.15.1 Rockwell Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.15.2 Rockwell Sales by Segment of Business 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.15.3 Rockwell Sales AGR by Segment of Business 2011-2015 (AGR %) Figure 8.15.4 Rockwell Net Profit 2010-2015 (US$m, AGR%) Figure 8.15.5 Rockwell Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.15.6 Rockwell Sales AGR by Geographical Location 2010-2015 (AGR %) Figure 8.15.7 Rockwell Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.15.8 Rockwell Organisational Structure 2016 Figure 8.16.1 SAP Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.16.2 SAP Sales by Segment of Business 2010-2014 (US$m, Total Company Sales AGR%) Figure 8.16.3 SAP Sales AGR by Segment of Business 2011-2014 (AGR %) Figure 8.16.4 SAP Net Profit 2010-2014 (US$m, AGR%) Figure 8.16.5 SAP Cost of Research & Development 2010-2014 (US$m, AGR%) Figure 8.16.6 SAP Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.16.7 SAP Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.16.8 SAP Organisational Structure 2016 Figure 8.17.1 Schneider Electric Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.17.2 Schneider Electric Sales by Segment of Business 2011-2015 (US$m, Total Company Sales AGR%) Figure 8.17.3 Schneider Electric Sales AGR by Segment of Business 2012-2015 (AGR %) Figure 8.17.4 Schneider Electric Net Profit 2010-2015 (US$m, AGR%) Figure 8.17.5 Schneider Electric Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.17.6 Schneider Electric Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.17.7 Schneider Electric Organisational Structure 2016 Figure 8.18.1 Siemens Total Company Sales 2010-2015 (US$m, AGR%) Figure 8.18.2 Siemens Sales by Segment of Business 2014-2015 (US$m, Total Company Sales AGR%) Figure 8.18.3 Siemens Net Profit 2010-2015 (US$m, AGR%) Figure 8.18.4 Siemens Cost of Research & Development 2010-2015 (US$m, AGR%) Figure 8.18.5 Siemens Sales AGR by Geographical Location 2011-2015 (AGR %) Figure 8.18.6 Siemens Sales by Geographical Location 2010-2015 (US$m, Total Company Sales AGR%) Figure 8.18.7 Siemens Organisational Structure 2016 ------------------------------------------------------------ Companies Mentioned in this report 3M Company ABB Accenture Aeris aicas Alcatel-Lucent Alphabet Inc. Amazon AMI GE LLC amplia Analog Devices, Inc Apple Apprion ARM Holdings plc Asavie AT&T Inc. Axeda B&R Industrial Automation Baosight Bayshore Networks, Inc. Bedrock Automation BeiDou Beijing Proudsmart Info. Technology Co., Ltd. Belden, Inc. Bit Stew Systems Blackberry Bosch Bosch Software Innovations (Bosch SI) Boston Dynamics C3 Energy Cambium Networks, Ltd. Canonical Group Limited Care Innovations Caterpillar CEA-TECH Certified Security Solutions China Telecom Cinterion Cirro Cisco Systems, Inc CMTC CODELCO Chile Cognizant Technology Solutions Combient AB Conduce Inc. Confidex Ltd. Connio Inc. Connode AB CSIRO Cubicon Corporation CyberLightning Ltd. CyberX DataLogic Datawatch Decisyon DeepMind Dell Deloitte LLP Deutsche Telekom Device Authority DGLogik, Inc. DigiCert, Inc Distrix Networks Ltd. DS-5 DT&C Ei3 Corporation Electric Imp EMC Corporation Emerson EnerTech Inc. EnterpriseWeb Ericsson Etisalat Facebook FIMECC Ltd. First Line Software, Inc FogHorn Freescale Semiconductor, Inc Frost Data Capital Fuji Electric Co., Ltd. Fujifilm Corporation Fujitsu Limited Gemalto General Electric Genpact GlobalSign, Inc. Google Inc. GS1 International Haier Group HappiestMinds Technologies Pvt Ltd HARTING KGaA Helium Hewlett Packard Enterprise Hewlett-Packard Company Hilscher Gesellschaft für Systemautomation mbH Hitachi, Ltd. Honeywell HP Inc Huawei Technologies Co. HyperCat Ltd ICT Austria Infineon Technologies Infosys Limited Innovasic, Inc. Inspiralia Intel Corporation Intelligent Structures Inc. InterDigital International Business Machines Corporation (IBM) IoT ONE IoTium Inc. Itron, Inc. ITW Ivar Jacobson Jabil Jasper Kaspersky Lab UK Ltd. KEDGE BS Keil Kepware Technologies Konica Minolta KUKA AG Kyland Technology Co., Ltd. Lido Stone Works LocalGrid Technologies LogMeIn LSEC - Leaders In Security Lynx Software Technologies M2M Alliance Maana Machina Research Limited MachineShop, Inc. Machine-to-Machine Intelligence (M2Mi) Manitowoc Foodservice MD PnP Micromem Technologies Inc. Micron Technology Microsoft Corporation MITRE Corporation Mitsubishi Electric Corporation Modius, Inc. Moxa Inc N National Instruments NATION-E LTD NEC Corporation NeuStar, Inc. NGRAIN (Canada) Corporation Nissan Motor No Magic Nokia Siemens Networks Numerex NXP Semiconductors Olympus Corporation OMEXELL(Jinan) Heat Transfer Technology Co.,LTD. Omni-ID OMRON Corporation OMRON VENTURES Open Group. Oracle Orange Pacific Controls Panasonic Parker Hannifin Pitney Bowes PMMI Pollux Automation Predikto, Inc PrismTech Productivity Apex, Inc. Produktion ProSyst Software GmbH Prykarpattyaoblenergo network PTC Inc Putman Media Qualcomm Technologies, Inc. QualiCal Qylur Intelligent Systems Real-Time Innovations (RTI) RealView Red Hat Redline Communications Renesas Electronics Corporation Rexroth RhoData Corporation Ricoh Company, Ltd. Robert Bosch GmbH Rockwell Automation ROHM Co., Ltd. ROI Management Consulting Room 5 Rostelecom Roxar Rubicon Labs Omc SafeLogic Saffron Technology, Inc. Samsung Electronics Sansa Security SAP SE SB Microsystems Schindler Digital Business Ltd. Schneider Electric SevOne, Inc. Siemens Sierra Wireless Sight Machine Singlewire SINTEF Sixth Energy Technologies Private Limited Sophic Automation Sdn Bhd SparkCognition Sprint Stichting imec Nederland Stream Technologies Swrve Symantec Synapse Wireless System Insights Tata Consultancy Services TE Connectivity Tech Mahindra Limited Tego Inc Telefonica Telenor’s Connexion Telit Wireless Solutions Texas Instruments Thameslink The Boeing Company ThetaRay LTD Thingswise ThingWorx Thyseenkrupp ThyssenKrupp Elevator Tieto Toshiba Toumetis Toyota Motor Sales T-Systems TTTech Tuev Sued AG Twin Oaks Computing Tyco UI LABS UL UNISYS Corporation Uptake V2COM Verisign, Inc. Verizon Verizon Wireless Vodafone Wapice Ltd Water & Process Group (WPG) Waterfall Security Solutions LTD Waygum Inc. Weather Company WIBU-SYSTEMS AG WiPro Wireless Glue Networks WITTENSTEIN Inc. Works Systems, Inc. Wyconn X10SYS Associative Technologies S.A. Xilinx, Inc. XMPro ZTE Organisations, Groups, Non-State Actors and Institutions Mentioned in this Report Advanced Manufacturing Technology Consortia (AMTECH) Agency for Science, Technology and Research (A*STAR), Singapore Alliance for Telecommunications Industry Solutions (ATIS) Asia IoT Alliance Association of Radio Industries and Businesses (ARIB) Auburn University Carnegie Mellon University Charles Stark Draper Laboratory China Academy of Information and Communications Technology China Communications Standards Association (CCSA) China Electronics Standardization Institute Cork Institute of Technology Department of Commerce’s Economic Development Administration (EDA) Department of Energy (DOE) Department of Health and Human Services Department of Homeland Security (DHS) Department of Transportation (DOT) Deutsche Bank Deutschsprachige SAP Anwendergruppe (DSAG) Digital Manufacturing and Design Innovation Institute DistribuTech Eclipse Foundation Environmental Protection Agency (EPA) European Commission European Parliament Research Service European Telecommunications Standards Institute (ETSI) European Union (EU) Federal Aviation Administration (FAA) Federal Highway Administration Exploratory Fraunhofer Gesellschaft French Ministry of the Economy Fundacion Tecnalia Research & Innovation General Aviation Manufacturers Association Georgia Institute of Technology Global City Teams Challenge (GCTC) i2CAT Foundation Industrial Internet Consortium (ICC) Industrial Technology Research Institute Industrial Value Chain Initiative INDUSTRIE 4.0 Industrie du Futur Industry Development Augmentation Division (III) Institute for Information Industry IoTUK John D. and Catherine T MacArthur Foundation Johns Hopkins University Kaiser Permanente Korea Electronics Technology Institute Massachusetts Institute of Technology (MIT) National Association of Electrical Distributors (NAED) National Engineering Research Center for Broadband Networks & Applications National Health Service (NHS) National Institute of Standards and Technology (NIST) National Institute of Standards and Technology Global City Teams Challenge National Network for Manufacturing Innovation National Science Foundation (NSF) Newcastle University Office of Management and Budget Office of Science and Technology Policy Organisation of Economic Cooperation and Development (OECD) Purdue University Rensselaer Polytechnic Institute Representative of German Industry and Trade Robot Revolution Realization Council Sector-Specific Agency Shenyang Institute of Automation Steinbeis Transfer Center Innovations forum Industrie (STCII) Taiwan Network Information Center Tampere University of Technology, Finland Technische Universität Darmstadt Telecommunications Industry Association (TIA) Telecommunications Technology Association (TTA) of Korea UK Parliament University of California, Berkeley University of Chicago University of Pennsylvania University of Pittsburgh US Census Bureau (Census) Vanderbilt University VTT Technical Research Centre of Finland Wireless Research Center of North Carolina Worcester Polytechnic Institute World Bank World Economic Forum Xerox Palo Alto Research Center (PARC) Yokohama National University ------------------------------------------------------------ Pricing Single User License: Single user copies of this report are available for EUR2699/ USD2799/ GBP1999 Departmental License: Entitles up to 5 individual users to access this report for EUR4049/ USD4199/ GBP2999 (Not suitable for library usage) Site License: Allow your company to have access to this report at one location for EUR6749/ USD6999/ GBP4999 (Suitable for library storage and use) Global License: Have your whole company worldwide to access this information for EUR9449/ USD9799/ GBP6999 ------------------------------------------------------------ Ordering To order this report, contact Peter Turay on: Telephone: +44(0)207 549 0537 or email: peter.turay@vgtelecomreports.com And provide the following information: Report Title: Report License (Single User/Departmental/Site/Global): Name: User Email: Job Title: Company: Invoice Address: Telephone and Fax number: EEC VAT Number (only for E.U.): Please contact me should you have any questions or wish to receive an executive summary of this report. I look forward to hearing from you. Best Regards, Peter Turay Telecoms Industry Consultant Terms and Conditions By replying to this e-mail submitting your order for this product you have agreed without limitation or qualification to be bound by and to comply with these Terms and Conditions. You agree that you will not fail to complete any transaction after submitting an order to purchase a product or submit any order to purchase a product where you do not intend to complete the transaction. Management Reports will only be sent on receipt of payment. You are currently subscribed to this list as freebsd-ppc@freebsd.org . As a valued contact or customer, you are receiving this email with information that we believe will be relevant to you. If however, you wish to stop future messages, please reply to this email typing "REMOVE" in the subject box. Registered Office: BSG House, 230 City Road, London, EC1V 2QY, U.K. From owner-freebsd-ppc@freebsd.org Sat Apr 16 14:20:34 2016 Return-Path: Delivered-To: freebsd-ppc@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34C2FB103A6 for ; Sat, 16 Apr 2016 14:20:34 +0000 (UTC) (envelope-from admin204@z204.najnx.com) Received: from z204.najnx.com (z204.najnx.com [161.123.213.204]) by mx1.freebsd.org (Postfix) with ESMTP id C4E731796 for ; Sat, 16 Apr 2016 14:20:32 +0000 (UTC) (envelope-from admin204@z204.najnx.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=najnx; d=z204.najnx.com; h=Date:From:To:Subject:Message-ID:Mime-Version:Content-Type; i=admin204@z204.najnx.com; bh=sERT+xoPDOZTV1EPtnlvrHQERDE=; b=eWhnvyYAY6+dLxcE5ggl0WlXw10Y3/R5WSzhmHrRKh8jvgExvgBfEf5dUJe5dkxdgyerZ9ofJgL8 XiDUccX6L49f3rtRdWr+6FSylbIC4N4CjDhrHk+FTBdpOlUIaI7c2snoBPA7jDMfjz9yfJ+yJRZb UCezNREsNz1sQSxBk8M= DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=najnx; d=z204.najnx.com; b=yFp55lvi1KbyNz2+dtkABSnJ7mCS/7NTiwdIaT4rn8PHH4HGXMHmB9+dF1r4l4TYwoAm8Ejv/R2E krtm0hYgSq3qwiet/30nteyKKdBtWdo09jxHMkv6LLFOrnhNd5UC9mDOaukJIb3hMeWyU4BInNpl ugb30AaJ6Euv/TkxO3A=; Date: Sat, 16 Apr 2016 21:55:19 +0800 From: "Rayban" To: Subject: great offer from Rayban Sunglasses Message-ID: <20160416215527208785@z204.najnx.com> X-mailer: Foxmail 6, 13, 102, 15 [cn] Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2016 14:20:34 -0000 DQoNCkhhdmluZyB0cm91YmxlIHJlYWRpbmcgdGhpcyBlbWFpbD8gVmlldyBpdCBpbiB5b3VyIGJy b3dzZXIuIE5vdCBpbnRlcmVzdGVkIGFueW1vcmU/IFVuc3Vic2NyaWJlIGluc3RhbnRseS4gDQoN CiAgIEZBU0hJT04gKiAgRnJlZSBSZXR1cm4gKiANCg0KDQpCZXN0IFNlbGxlcnMgU3BlY2lhbHMg TmV3IFByb2R1Y3RzIEZlYXR1cmVkIFByb2R1Y3RzIEFsbCBQcm9kdWN0cyBDb250YWN0IFVzIE15 IEFjY291bnQNCiANCg0KRGlzY291bnQgUmF5YmFuIFN1bmdsYXNzZXMgDQpXZWxjb21lIHRvIG15 IHN1bmdsYXNzZXMgc3RvcmUgDQo4MyANCg0KRVZFUllUSElORyANCiVPRkYgDQoNClNIT1AgTk9X IA0KUmF5YmFuIFN1bmdsYXNzIFN0b3JlIA0KQnV5IE92ZXIgNCBwYWlycyB0byBlbmpveSBmcmVl IHNoaXBwaW5nIA0KDQoNCg0KDQpQcml2YWN5IE5vdGljZSANCg0KDQpUaGFuayB5b3UgZm9yIHNo b3BwaW5nIGF0IG91ciB3ZWJzaXRlLg0KDQpXZSBhcmUgY29tbWl0dGVkIHRvIHByZXNlcnZpbmcg dGhlIHByaXZhY3kgb2YgYWxsIHZpc2l0b3JzIHRvIG91ciB3ZWJzaXRlLiBQbGVhc2UgcmVhZCB0 aGUgZm9sbG93aW5nIHByaXZhY3kgcG9saWN5IHRvIHVuZGVyc3RhbmQgaG93IHdlIHVzZSBhbmQg cHJvdGVjdCB0aGUgaW5mb3JtYXRpb24gdGhhdCB5b3UgcHJvdmlkZSB0byB1cy4NCg0KV2UgZG8g bm90IHJlbnQsIHNlbGwsIG9yIHNoYXJlIHBlcnNvbmFsIGluZm9ybWF0aW9uIGFib3V0IHlvdSB3 aXRoIG90aGVyIHBlb3BsZSBvciBub24tYWZmaWxpYXRlZCBjb21wYW5pZXMuDQoNCldlIG1heSBj b2xsZWN0IHlvdXIgbmFtZSwgam9iIHRpdGxlLCBjb250YWN0IGluZm9ybWF0aW9uIGluY2x1ZGlu ZyBlbWFpbCBhZGRyZXNzLCBkZW1vZ3JhcGhpYyBpbmZvcm1hdGlvbiBzdWNoIGFzIHBvc3Rjb2Rl LCBwcmVmZXJlbmNlcyBhbmQgaW50ZXJlc3RzLCBhbmQgb3RoZXIgaW5mb3JtYXRpb24gcmVsZXZh bnQgdG8gY3VzdG9tZXIgc3VydmV5cyBhbmQvb3Igb2ZmZXJzLiBUaGlzIGluZm9ybWF0aW9uIGlz IHRvIHVuZGVyc3RhbmQgeW91ciBuZWVkcyBhbmQgcHJvdmlkZSB5b3Ugd2l0aCBiZXR0ZXIgc2Vy dmljZSBhbmQgcHJvZHVjdHMuIFByb21vdGlvbmFsIGVtYWlscyB3aWxsIGJlIHNlbnQgYWJvdXQg bmV3IHByb2R1Y3RzLCBzcGVjaWFsIG9mZmVycyBvciBvdGhlciBpbmZvcm1hdGlvbiB3aGljaCB3 ZSB0aGluayB5b3UgbWF5IGZpbmQgaW50ZXJlc3RpbmcgdXNpbmcgdGhlIGVtYWlsIGFkZHJlc3Mg d2hpY2ggeW91IGhhdmUgcHJvdmlkZWQuIEFkZGl0aW9uYWxseSwgd2UgbWF5IHVzZSB5b3VyIGlu Zm9ybWF0aW9uIHByb3ZpZGVkIHRvIGN1c3RvbWl6ZSB0aGUgd2Vic2l0ZSBhY2NvcmRpbmcgdG8g eW91ciBpbnRlcmVzdHMuDQoNClN1bmdsYXNzZXMgU2hvcCBQcml2YWN5IFBvbGljeSBkb2VzIG5v dCBhcHBseSB0byBhbnkgdGhpcmQgcGFydHkgbGlua3MsIHByb2R1Y3RzIG9yIHNlcnZpY2VzIHBy b3ZpZGVkIHRocm91Z2ggc3VjaCBsaW5rcy4gQW55IGluZm9ybWF0aW9uIHlvdSBwcm92aWRlIGJ5 IGZvbGxvd2luZyBhIGxpbmsgd2lsbCBmYWxsIHVuZGVyIHRoZSBQcml2YWN5IFBvbGljeSBvZiB0 aGUgdGhpcmQgcGFydHkuIA0KDQoNCg0KQ29weXJpZ2h0IDIwMDktMjAxNiBSYXliYW4gU3VuZ2xh c3NlcyBBbGwgUmlnaHRzIFJlc2VydmVkLiA=