Quantcast
Channel: Intel Communities: Message List
Viewing all 17366 articles
Browse latest View live

Re: No BIOS (only PXE) display on NUC5i5RYB with Dell P2415Q 4K

$
0
0

So here's an update with the new cable, tl;dr: it works. DisplayPort at 60Hz too!

 

HDMI:

 

The new cable is a cheap mini-HDMI to HDMI, relatively short (75cm).

 

- new HDMI cable to old 1280x800 monitor via DVI adapter: works all the time

- new HDMI to 4K monitor: works 2/3 of boot cycles, when failing "bad timing" error on the monitor, but at least good enough to get into the BIOS

- after Ubuntu 15.04 install HDMI to 4K seems stable when in the OS (but I've not tested it very long)

 

DisplayPort:

 

- The BIOS was 0246 so I updated to 0247. DisplayPort still no show before OS install

- Now the surprise: after OS install not only does DP work with the stock Dell cable, but it also works during the boot (splash screen and BIOS), including after a power cycle! That's weird, as I would have thought the state of the graphics/BIOS should not persist across power cycles. It's good here, but could be bad if the OS takes it into a bad state.

- The DisplayPort is running 4K at 60Hz (vs 30Hz for HDMI) on Ubuntu 15.04

 

So on the DisplayPort side it looks like a software problem in the BIOS. Harder to say whether HDMI could be less sensitive to cables with better software or we're having hardware issues.

 

Tips:

 

- it should be possible to enable Legacy boot by typing keyboard navigation blind. Intel could help by having command line style magics in the search box the cursor starts in after F2.

- the F10 boot selection menu is in 800x600 which may work in some circumstances where full screen doesn't?


Intel NUC D54250WYK

$
0
0

I have an old TV and would like to use it as a monitor for an Intel NUC D54250WYK if I decide to get one. What do I have to look for on the little TV that would tell me if it would work

 

NUC D54250WYK

$
0
0

Anyone own the new Intel NUC D54250WYK if so how hard is it configure? Putting the components in would be no problem for me I don’t think. But I don’t think I could ever get it up and running. Good way to own a second PC

Re: NUC D54250WYK

Re: DX79SR and USB 3.0 Firmware Updates

$
0
0

Hi Kevin,

 

It is is extremely frustrating that no resolution to this has been found. Is someone still trying to resolve this? How can I go about receiving a refund for the board?

Intel Centrino 6300 Ultimate N

$
0
0

How does this card connect at 300 or 450Mbs? What router and settings does intel actual use to get this. I have a Cisco E3000 router which is a dual band very capable N router, e yet I cant get the thing to show above 130Mbs via Windows. I want to be able to see 300, as my router does this and this card is advertised too, via Windows netowrk sharing section. I run a Windows 7 Home premium, 64 bit and have latest drivers installed..

NUC5i3RYK cannot find my SSD after a OS reboot...

$
0
0

I'm using NUC5i3RYK with LITEON L8H-128V2G m.2 SATA SSD, I got a strange issue... The SSD driver will missing after reboot OS... it's disappeared from boot list... But after shutdown and start the NUC by power button, everything is OK...

 

Restart by OS -> SSD will missing...

Shutdown & power on -> Everything is OK...

Re: Any plans on moving away from yocto? or cross supporting something else?

$
0
0

Too bad you did not put any effort in finding out who I am ; unfortunately your name "rgb" is not of much use to do such thing from my side.

You think I am telling you ******** and/or posting some scam? Think our website is put together in the last minute? You may be right! Just like any normal business it takes time to develop something.

Actual hardware != website though.

You want more information? You'll get it. I will create a new topic about how to build your own Galileo software using other software than Yocto. Stay tuned.

Oh and btw: yeah, post 1, but I just have to start somewhere right....


Re: GSM Client

$
0
0

Actually, I need to use a GSM Shield to avoid WiFi.

 

I have solved everything, even the multiple serial connection, I used a relay which acts like a bridge for the RX cable, and switches between the data arriving form the gps and from the gsm.

 

Thank you.

Re: Any plans on moving away from yocto? or cross supporting something else?

$
0
0

A complete description with links to software would be a much more professional response that the original posting or your response  If you are legitimate, than you have my apology and I look forward to seeing something concrete.

rgb

Re: Any plans on moving away from yocto? or cross supporting something else?

How to build your own BSP without using Yocto

$
0
0

Hello all,

 

Since I do not like Yocto (high learning curve, defaults which makes no sense to my requirements etc, long compile times) I build my own BSP for our Galileo gen2 based prototype.

I did this just by using vanilla (open source) components available from the web.

 

To get started, I fetched crosstool-ng (crosstool-ng/crosstool-ng at 1.20 · GitHub) for building the cross-toolchain. I have put the attached configuration (crosstool-ng.config -> rename to .config in crosstool directory) in it and run:

ct-ng build

I put everything in /opt/cross/quark/toolchain because all my other cross-toolchains are there as well, since it is open source, you can choose what fits yourselves best.

 

The toolchain has to be build only once, after that you can reuse it, tarbal and/or distribute it (only if the other machines have the same dynamic libraries, else build it again there as well).

 

 

The next step would be to clone the Linux kernel from git.kernel.org. I like to use git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git and branch linux-4.0.y . The Intel Quark/Galileo board has been partially supported since some where between 3.19.x and 4.0.y . Not all hardware is ported upstream as of yet, but I do not use the SRAM and/or other missing devices yet.

Copy the attached linux kernel config to the linux source and rename it to .config

Type make menuconfig (or xconfig or whatever you like) and check if the configuration suits your own needs, do not forget to save any changes.

Type make bzImage modules -j<whatever-the-number-of-cpus/threads-you-have+2>

When no errors occur, your kernel + modules are now ready. Keep them here for putting a working image together later.

 

 

Now we have our toolchain + kernel, we need to build some root filesystem. I like to use buildroot for that. Buildroot is able to use the cross-toolchain build from above using the attached configuration (buildroot.config).

Clone buildroot git://git.busybox.net/buildroot and rename attached buildroot.config to .config

Run make menuconfig -> you can enable more packages as your requirments need

type make and wait for buildroot to complete.

When no errors occur, our primary/base root filesystem is ready.

 

Now we have to assemble all this into one working image. What is needed to boot from the microSD card in the Galileo using the default SPI firmware is a directory /boot/grub/grub.cfg on the first partition of the sd card. You can use a loop for building an image locally or use the genext2fs tool from buildroot. For simplicity, I only explain using a real microSD card. Partition it with one primary partition of type linux (83). Make a ext4 filesystem on it. Mount it:

create directory /boot/grub on it and put attached grub.conf on it.

Also extract the buildroot create tar file onto the sd card (if you like, make sure the filepermissions (root:root) are kept in tact).

copy the kernel image linux/arch/x86/boot/bzImage to /boot/linux

if required, also copy the kernel modules to the correct folder (create if needed) on the microsd card (/lib/modules/<kernel-version>/*)

unmount microsd card, put in galileo

 

boot and see for yourself.
If anyway has questions I will be willing to answer them here. Please excuse my spelling errors...

Have a nice Galileo hacking time!

Re: NUC5i3RYK cannot find my SSD after a OS reboot...

$
0
0

The same thing happened on my D34010WYKH and Crucial SSD about three weeks ago. It's been OK since

NUC 5i3RYH display problem

$
0
0

on startup sometimes I get a plain blue screen instead of the windows 8.1 log in screen.

If i click on the screen I am able to log in to the desktop but the desktop image is broken up into panels whch shimmer.

I shut the PC down and back on again and get the same blue screen.

If I switch the monitor off/on the normal windows log in screen appears ok and I can continue normally.

I updates the bios from 0137 to 0147 but the problem still occurs intermittently.

I have now changed the mini DP to DP cable for a different one to see if that helps. Monitor is a Samsung Syncmaster SA650

 

Update - change of cable made no difference. I have now changed the monitor i/p selection from auto to manual/display port.

Is it possible to use MongoDB on Yocto (running on Galileo Gen. 1)?

$
0
0

Hi,

 

I'm using Intel Galileo Gen. 1 board running Yocto (Linux 3.8.7-yocto-standard i586).

 

What I want to achieve is to run simple http server on node.js. Node will collect quite a lot data from various sensors (via WS), so I wan to use a MongoDB to store it. Unfortunately I have failed to get it up and running. I tried to run binary release (32-bit for Linux) from MongoDB site, but mongod crashes with obvious message "Illegal instruction". I googled a little bit and found some RPMs that were supposed to be compiled for i586 but they didn't work as well.

 

I read somewhere, on this forum, that Galileo does not provide a full instruction set (as opposed to Edison). So, is Galileo capable of hosting MongoDB? If yes, could you please point me a little bit what should I do to make it work. If not - what would be best alternative for me? NoSQL preferably? Or just sqlite?

 

Thanks in advance for your replies.


Intel(R) - Dual Band Wireless-AC 7260 problems

$
0
0

Hello, just got my new laptop and i am having problems (WINDOWS 8.1)

 

I am receiving high ping on games and on the internet. I run ping www.google.com -n 150 to test my ping. My Ping spikes up from 24 to the hundreds.

 

I have done the solution requiring me to make a file called ScanWhenAssociated

Infact i did it on each folder i found

It fixed it from occuring every couple of seconds to around 10-20 seconds.

I already got multiple ERR_RESOLUTION and DOMAIN fails while writing this on google chrome.

Re: Problem with installation Intel Parallel Studio XE 2015 (bug?)

$
0
0

Propably problem hidden.. So Intel, if you read this - repair this bug.

 

So, if you have installed XE Update 2, install Update 3.
Then, Run again ONLINE Installator from "Documents\Intel\Download" .. "w_compxe_online_2015.3.208.exe" and select all ...
Voila

 

(I installing now btw)

Re: Intel(R) - Dual Band Wireless-AC 7260 problems

Re: Blue screen with 82599 10 GbE Controller

$
0
0

Hi,

 

1. Under load, no specific conditions trigger the crash.

2. Clustering set-up, 4 node fail-over cluster, only virtual machine roles, all iSCSI.

3. I have only ever seen this issue under driver 2.0.

 

Thank you,

 

Nick

Re: Intel 7260 Problems and Solution

$
0
0

Well that was short lived, problem returned at reboot and  persisted even after restoring Windows to an earlier time.

 

Read elsewhere that disabling HT Mode in advanced properties may help.

 

It did and internet connection was restored but wireless speed was only 54mbs

 

Reenabled HT Mode and internet connection remained now with 300mbs wireless speed.

 

It would seem that many people are having issues with the 7260, I don't even know what HT mode is but toggling that seems to have resolved my issue for now.

 

It has even survived a restart of the PC.

Viewing all 17366 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>