two4one
Posts: 1
Joined: Fri Jan 17, 2020 11:52 pm

Remove the wireless card

Fri Jan 17, 2020 11:56 pm

Is it possible to remove the wireless card from the pi4? (No internet/ No Bluetooth)

241

User avatar
DougieLawson
Posts: 38883
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK
Contact: Website Twitter

Re: Remove the wireless card

Sat Jan 18, 2020 8:26 am

There is no "wireless card" it's integrated hardware on the single board computer.

You can disable wireless in software. Use the rfkill program.
Note: Any requirement to use a crystal ball or mind reading will result in me ignoring your question.

Criticising any questions is banned on this forum.

Any DMs sent on Twitter will be answered next month.
All non-medical doctors are on my foes list.

User avatar
Botspot
Posts: 1241
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas
Contact: Website

Re: Remove the wireless card

Sat Jan 18, 2020 8:12 pm

I believe the wireless parts are located under the RF shield on the Pi 4.
rf shield.jpeg
rf shield.jpeg (66.7 KiB) Viewed 1229 times
Looking at the mechanical drawing of the Pi 4, it appears there is quite a cluster of components under the RF shield.
2020-01-18-140714_1280x1024_scrot.png
2020-01-18-140714_1280x1024_scrot.png (22.32 KiB) Viewed 1229 times
Like Dougie said, the 'proper' way to disable WiFi and Bluetooth would be by using software. But, if you want 'FBI-level' disabling, ie - no possible way to hack it to work, then I suppose you could rip off the RF shield and then break the components off one by one until WiFi no longer works.

I am NOT recommending you do this, but just pointing out it is "possible to remove the wireless card COMPONENTS from the pi4".

Edit for clarification: This is a terrible idea - you stand a good change breaking your Pi in the process. Disabling wireless by software is the "proper" way to do it, and this post just shows that a theoretically physical way is possible, not necessarily a good idea.
Last edited by Botspot on Sun Jan 19, 2020 12:47 pm, edited 2 times in total.
Want to make your own Raspbian image?
  • Hard way: Mess with confusing terminal commands.
  • Easy way: Let Pi-Power-Tools do it all for you!
Boot your image in a VM, Flash from the Internet at top speed, Mount (to drop files in), Edit partitions, Shrink/Expand, Repair, and more. Enjoy! :)
https://github.com/Botspot/Pi-Power-Tools

DirkS
Posts: 10347
Joined: Tue Jun 19, 2012 9:46 pm
Location: Essex, UK

Re: Remove the wireless card

Sat Jan 18, 2020 8:28 pm

Botspot wrote:
Sat Jan 18, 2020 8:12 pm
But, if you want 'FBI-level' disabling, ie - no possible way to hack it to work, then I suppose you could rip off the RF shield and then break the components off one by one until WiFi no longer works.

I am NOT recommending you do this, but just pointing out it is "possible to remove the wireless card from the pi4".
And you are taking responsibility if this actually disables the Pi permanently?
Have you tried this yourself?

User avatar
Botspot
Posts: 1241
Joined: Thu Jan 17, 2019 9:47 pm
Location: Texas
Contact: Website

Re: Remove the wireless card

Sat Jan 18, 2020 8:45 pm

DirkS wrote:
Sat Jan 18, 2020 8:28 pm
Botspot wrote:
Sat Jan 18, 2020 8:12 pm
But, if you want 'FBI-level' disabling, ie - no possible way to hack it to work, then I suppose you could rip off the RF shield and then break the components off one by one until WiFi no longer works.

I am NOT recommending you do this, but just pointing out it is "possible to remove the wireless card from the pi4".
And you are taking responsibility if this actually disables the Pi permanently?
Have you tried this yourself?
No, I have not tried it my self (Not planning to either), and as a rule of thumb, you assume all responsibility when you follow the advice of some random guy on the Internet. (No, I cannot guarantee my advice is accurate and cannot guarantee will not break your Pi)
Want to make your own Raspbian image?
  • Hard way: Mess with confusing terminal commands.
  • Easy way: Let Pi-Power-Tools do it all for you!
Boot your image in a VM, Flash from the Internet at top speed, Mount (to drop files in), Edit partitions, Shrink/Expand, Repair, and more. Enjoy! :)
https://github.com/Botspot/Pi-Power-Tools

User avatar
mahjongg
Forum Moderator
Forum Moderator
Posts: 13009
Joined: Sun Mar 11, 2012 12:19 am
Location: South Holland, The Netherlands

Re: Remove the wireless card

Sun Jan 19, 2020 2:03 am

two4one wrote:
Fri Jan 17, 2020 11:56 pm
Is it possible to remove the wireless card from the pi4? (No internet/ No Bluetooth)

241
NO!!

It is NOT possible to remove the "wireless card" from the RPI4 because it has none!

The wireless functionality is integrated, and nor physically removable, suggestions toward this are made jokingly!

W. H. Heydt
Posts: 12431
Joined: Fri Mar 09, 2012 7:36 pm
Location: Vallejo, CA (US)

Re: Remove the wireless card

Sun Jan 19, 2020 2:56 am

The way to get a Pi without wireless is to buy a Pi2B. If thinking in terms of the Pi4B, the best option would be the P2Bv1.2.

A desire for a Pi4-class board without WiFi or BT would argue for a P2Bv1.3 which would be a Pi4B without the wireless circuitry. (I would buy a bunch of them--probably a 2GB variant.) It would have the advantage of--potentially--helping to phase out the BCM2837. However, I seriously doubt it would be a popular enough to be a viable product. Pity...

User avatar
lpsw
Posts: 219
Joined: Thu Jun 25, 2015 4:45 pm
Location: USA

Re: Remove the wireless card

Sun Jan 19, 2020 6:54 am

241,
Is you goal to physically or logically remove wifi/bt?
If the latter, it can be done by disabling in /boot/config.txt.

Code: Select all

#dtoverlay=pi3-disable-wifi
#dtoverlay=pi3-disable-bt
Self-education is, I firmly believe, the only kind of education there is - Isaac Asimov

User avatar
rpdom
Posts: 17029
Joined: Sun May 06, 2012 5:17 am
Location: Chelmsford, Essex, UK

Re: Remove the wireless card

Sun Jan 19, 2020 8:33 am

lpsw wrote:
Sun Jan 19, 2020 6:54 am
241,
Is you goal to physically or logically remove wifi/bt?
If the latter, it can be done by disabling in /boot/config.txt.

Code: Select all

#dtoverlay=pi3-disable-wifi
#dtoverlay=pi3-disable-bt
But you'd need to remove the "#" from the start of those lines, or they will do nothing.
Unreadable squiggle

User avatar
lpsw
Posts: 219
Joined: Thu Jun 25, 2015 4:45 pm
Location: USA

Re: Remove the wireless card

Sun Jan 19, 2020 2:56 pm

Oops sorry. I thought I edited that post to remove them.
Self-education is, I firmly believe, the only kind of education there is - Isaac Asimov

hippy
Posts: 7459
Joined: Fri Sep 09, 2011 10:34 pm
Location: UK

Re: Remove the wireless card

Sun Jan 19, 2020 3:29 pm

To physically disable WiFi/Bluetooth you could disconnect the power from the WiFi/Bluetooth chip which should prevent its operation. You would have to test to check that is the case and that it doesn't have other adverse operational consequences.

According to the post below; the chip's power is the WB_VBAT signal shown in the reduced schematics, which could be disconnected simply by removing D2 -

https://www.raspberrypi.org/forums/view ... 0#p1594998

The advantages of only removing D2 is that it's easy to do, easy to replace if you want to re-enable WiFi/Bluetooth, and you could make D2 switch operated so you can turn it on and off on a whim.

If D2 were removed, you would also need to remove R17 and link Q1/D3 via a 1K or higher resistor to 5V to allow the power LED to work as it originally did.

Any such circuit surgery would not be recommended, would void any warranty you have, may not work, and would be undertaken solely at your own risk.

imspyguy
Posts: 1
Joined: Wed Jun 24, 2020 7:15 am

Re: Remove the wireless card

Wed Jun 24, 2020 9:40 am

If I might suggest.... I think there would be a use for pi 4 boards with no wifi. There is a large industry I think that might find a use for these little guys if they didn't have the wifi embedded. Just a suggestion.

Great device either way!!! Compliments all around!!

JB

hippy
Posts: 7459
Joined: Fri Sep 09, 2011 10:34 pm
Location: UK

Re: Remove the wireless card

Wed Jun 24, 2020 1:23 pm

imspyguy wrote:
Wed Jun 24, 2020 9:40 am
There is a large industry I think that might find a use for these little guys if they didn't have the wifi embedded.
I can't see there being any any significant untapped market which wants to use a Pi without WiFi which could not use a Pi with WiFi. So I can't see producing a Pi board aimed at that being a sensible or commercially viable option for the Foundation.

Farnell / Element 14 offers a Pi customisation service which I imagine could include the removal of WiFi and would likely be the best route to go down.

bjtheone
Posts: 770
Joined: Mon May 20, 2019 11:28 pm
Location: The Frozen North (AKA Canada)

Re: Remove the wireless card

Wed Jun 24, 2020 6:55 pm

And of that small subset, you would have to remove, those that don't want WiFi and are happy with any of the software based methods of disabling it. If you are that stressed about it, just faraday cage that sucker.

W. H. Heydt
Posts: 12431
Joined: Fri Mar 09, 2012 7:36 pm
Location: Vallejo, CA (US)

Re: Remove the wireless card

Wed Jun 24, 2020 7:24 pm

hippy wrote:
Wed Jun 24, 2020 1:23 pm
imspyguy wrote:
Wed Jun 24, 2020 9:40 am
There is a large industry I think that might find a use for these little guys if they didn't have the wifi embedded.
I can't see there being any any significant untapped market which wants to use a Pi without WiFi which could not use a Pi with WiFi. So I can't see producing a Pi board aimed at that being a sensible or commercially viable option for the Foundation.

Farnell / Element 14 offers a Pi customisation service which I imagine could include the removal of WiFi and would likely be the best route to go down.
And, yet, Pi2Bs still sell.

User avatar
bensimmo
Posts: 4577
Joined: Sun Dec 28, 2014 3:02 pm
Location: East Yorkshire

Re: Remove the wireless card

Wed Jun 24, 2020 7:54 pm

Only market I can think of is Cafe's and Thin Clients and possibly Schools, where they may use Ethernet instead along with PoE. At which point you have a quite customised version, PoE onboard instead of WiFi/BT and drop the power connector.

But the I'm also assuming RPT know if there is a demand for it or if it too specialised.



AS a note to add tho this
You can now use

Code: Select all

dtoverlay=disable-wifi
dtoverlay=disable-bt
as they made a change to remove the Pi3 prefixes, since Pi4 and PiZero also use it.

User avatar
Burngate
Posts: 6290
Joined: Thu Sep 29, 2011 4:34 pm
Location: Berkshire UK Tralfamadore
Contact: Website

Re: Remove the wireless card

Thu Jun 25, 2020 10:04 am

It strikes me as weird that the 3B / 3B+ / 4B have both WiFi and PoE, while the 2B has neither.

With the 4B, If you use PoE, WiFi is redundant; WiFi implies no cable so you'll have to provide power some other way.
With the 2B, either option needs desk-clutter.

That's without considering the down-sides of the 2B compared to later models.

drgeoff
Posts: 10676
Joined: Wed Jan 25, 2012 6:39 pm

Re: Remove the wireless card

Thu Jun 25, 2020 10:23 am

Burngate wrote:
Thu Jun 25, 2020 10:04 am
It strikes me as weird that the 3B / 3B+ / 4B have both WiFi and PoE, while the 2B has neither.

With the 4B, If you use PoE, WiFi is redundant; WiFi implies no cable so you'll have to provide power some other way.
With the 2B, either option needs desk-clutter.

That's without considering the down-sides of the 2B compared to later models.
I think the reason the 2B has neither was simply that at the time they could not be included within the $35 target.

The 3B does not have PoE capability. That did not come until the 3B+.

hippy
Posts: 7459
Joined: Fri Sep 09, 2011 10:34 pm
Location: UK

Re: Remove the wireless card

Thu Jun 25, 2020 10:30 am

W. H. Heydt wrote:
Wed Jun 24, 2020 7:24 pm
And, yet, Pi2Bs still sell.
Indeed, but are they being bought by people who need a product which must not have WiFi or by people who don't need WiFi and are choosing it for other reasons, lower cost, habit, etc ?

I would never suggest there wouldn't be a market for a 4B without WiFi if cheaper; it's more the potential size of the market who must have a 4B without WiFi, cannot use 4B's with WiFi.

If the foundation produced a 4B without WiFi which cost the same as with WiFi; would they sell more 4B's ? I can't see it. Not enough to make it worthwhile doing it.

plugwash
Forum Moderator
Forum Moderator
Posts: 3602
Joined: Wed Dec 28, 2011 11:45 pm

Re: Remove the wireless card

Thu Jun 25, 2020 10:33 am

Probablly sufficient to just remove the main wifi/bluetooth chip, no need to bother with the passives.

I could understand some high-security environments being uncomfortable about devices having unnessacery wifi radios around, even if they are disabled as an intruder could re-enable said radios.

User avatar
bensimmo
Posts: 4577
Joined: Sun Dec 28, 2014 3:02 pm
Location: East Yorkshire

Re: Remove the wireless card

Thu Jun 25, 2020 10:43 am

All this talk of the Pi2.

The Pi2 is just an incremental model.
It has no WiFi/BT becasue it came before WiFi/BT was added.
It came before the PiZeroW and the Pi3

simples.

Pi2 released Feb 2015
a year later
P3 with the first WiFi/BT onboard Feb 2016
and another year later the Zero gained WiFi/BT Feb 2017

hippy
Posts: 7459
Joined: Fri Sep 09, 2011 10:34 pm
Location: UK

Re: Remove the wireless card

Thu Jun 25, 2020 12:38 pm

bensimmo wrote:
Thu Jun 25, 2020 10:43 am
The Pi2 is just an incremental model.
Yes, and the incremental nature of development, additions, and what the RPT were working on and when, can be seen from what was launched and when.

Maybe some E&OE -

Code: Select all

.--------------------------------------------------------------.
|                                                              |
|                       Zero         ZW     ZWH                |
| B             B+                                             |
|        A      A+                          3A+                |
|                       2B    2B 1.2                           |
|                             3B            3B+                |
|                                                  4B     4B8G |
|               CM1                  CM3                       |
|                                                              |
|------|------|------|------|------|------|------|------|------|
|      |      |      |      |      |      |      |      |      |
| 2012 | 2013 | 2014 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 |
|             |             |                                  |
|             | 40-pin      | WiFi / Bluetooth                 |
`--------------------------------------------------------------'
I personally view the original 2B as a rather lacklustre affair. True, it's the first to have 4 cores and a bump in speed but still 32-bit and no new hardware features. I see it as a stop-gap or stepping stone to the 3B. The 2B Rev 1.2 merely the original with some lipstick slapped on it.
Last edited by hippy on Thu Jun 25, 2020 12:56 pm, edited 1 time in total.

jamesh
Raspberry Pi Engineer & Forum Moderator
Raspberry Pi Engineer & Forum Moderator
Posts: 26442
Joined: Sat Jul 30, 2011 7:41 pm

Re: Remove the wireless card

Thu Jun 25, 2020 12:55 pm

bensimmo wrote:
Thu Jun 25, 2020 10:43 am
All this talk of the Pi2.

The Pi2 is just an incremental model.
It has no WiFi/BT becasue it came before WiFi/BT was added.
It came before the PiZeroW and the Pi3

simples.

Pi2 released Feb 2015
a year later
P3 with the first WiFi/BT onboard Feb 2016
and another year later the Zero gained WiFi/BT Feb 2017
This. Just part of product development, each model adds a few features!
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.

W. H. Heydt
Posts: 12431
Joined: Fri Mar 09, 2012 7:36 pm
Location: Vallejo, CA (US)

Re: Remove the wireless card

Fri Jun 26, 2020 3:24 am

hippy wrote:
Thu Jun 25, 2020 10:30 am
W. H. Heydt wrote:
Wed Jun 24, 2020 7:24 pm
And, yet, Pi2Bs still sell.
Indeed, but are they being bought by people who need a product which must not have WiFi or by people who don't need WiFi and are choosing it for other reasons, lower cost, habit, etc ?
Pi2B costs the same as the later boards, $35. The current Pi2Bv1.2 is, basically, a slowed down Pi3B with no WiFi, so the performance hit isn't a great as it might be. At the reduced default clock (900MHz), passive cooling with no heatsink is also an easy default.
If the foundation produced a 4B without WiFi which cost the same as with WiFi; would they sell more 4B's ? I can't see it. Not enough to make it worthwhile doing it.
I would buy at least 6 of them. Quite possibly more. But I will grant that I am probably an outlier in terms of market.

W. H. Heydt
Posts: 12431
Joined: Fri Mar 09, 2012 7:36 pm
Location: Vallejo, CA (US)

Re: Remove the wireless card

Fri Jun 26, 2020 3:26 am

hippy wrote:
Thu Jun 25, 2020 12:38 pm
I personally view the original 2B as a rather lacklustre affair. True, it's the first to have 4 cores and a bump in speed but still 32-bit and no new hardware features. I see it as a stop-gap or stepping stone to the 3B. The 2B Rev 1.2 merely the original with some lipstick slapped on it.
The Pi2Bv1.2 is capable of USB MSD booting and running a 64-bit OS. That's pretty impressive lipstick.

Return to “Beginners”