Sign in

username:

password:



Not a member?

Search Comp.Arch.FPGA



Search tips

fpga by Keywords

Altera | ASIC | CPLD | Cyclone | DCM | DDR | DSP | Ethernet | ISE | JTAG | Linux | LVDS | Microblaze | ML310 | Modelsim | NIOS | OPB | PCI | Quartus | RocketIO | SDRAM | Spartan | Spartan3 | SRAM | Stratix | Verilog | VHDL | Virtex | Virtex-4 | Virtex-II | Xilinx | XST

Ads

See Also

DSPEmbedded SystemsElectronics

Comp.Arch.FPGA | Altera Byte Blaster Cable on Linux

There are 3 messages in this thread.

You are currently looking at messages 0 to 3.

Altera Byte Blaster Cable on Linux - B. Joshua Rosen - 2007-02-28 13:54:00

I'm trying to use the Altera USB Byte Blaster
Cable on Linux (Scientific
Linux 4.4, i.e. RHEL 4). The Programmer application sees the cable,
however it says there are insufficient privileges on the port. I've tried
running Quartus as root, that didn't fix the problem. There is no Firewall
and Secure Linux is disabled. Anyone have any suggestions?



Re: Altera Byte Blaster Cable on Linux - 2007-02-28 16:45:00

On Feb 28, 1:54 pm, "B. Joshua Rosen"
<bjro...@polybusPleaseDontSpamMe.com> wrote:
> I'm trying to use the Altera USB Byte Blaster Cable on Linux (Scientific
> Linux 4.4, i.e. RHEL 4). The Programmer application sees the cable,
> however it says there are insufficient privileges on the port. I've tried
> running Quartus as root, that didn't fix the problem. There is no Firewall
> and Secure Linux is disabled. Anyone have any suggestions?

Yes, the program needs to call ioperm() on the printer port address
before trying to talk to it.

Being root (or an setuid root executable) just means you have the
right to make that function call; it doesn't mean it's necessarily
been done.


Re: Altera Byte Blaster Cable on Linux - General Schvantzkoph - 2007-02-28 17:02:00

On Wed, 28 Feb 2007 13:45:03 -0800, cs_posting
wrote:

> On Feb 28, 1:54 pm, "B. Joshua Rosen"
> <bjro...@polybusPleaseDontSpamMe.com> wrote:
>> I'm trying to use the Altera USB Byte Blaster Cable on Linux (Scientific
>> Linux 4.4, i.e. RHEL 4). The Programmer application sees the cable,
>> however it says there are insufficient privileges on the port. I've tried
>> running Quartus as root, that didn't fix the problem. There is no Firewall
>> and Secure Linux is disabled. Anyone have any suggestions?
> 
> Yes, the program needs to call ioperm() on the printer port address
> before trying to talk to it.
> 
> Being root (or an setuid root executable) just means you have the
> right to make that function call; it doesn't mean it's necessarily
> been done.

I found the instructions on the Altera site. Thanks anyway.