Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

Is there a way to find the current firmware version number? Either the running version or the version currently installed in /boot?

uname -a shows only the kernel version, not the GPU "binary blob."

Related: How do I update software and firmware?

share|improve this question

1 Answer

up vote 11 down vote accepted

You can check the GPU's firmware version by entering the following on the command line:

sudo /opt/vc/bin/vcgencmd version
share|improve this answer
1  
The real question is why have they put it in such an obscure location? – Alex Chamberlain Aug 7 '12 at 8:12
@AlexChamberlain, It is because of the architurcture of the linux operating system. The /opt folder contains the optional packages, That is why the vcgencmd package must be installed there – Suhaib May 17 at 1:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.