Skip to content

Commit 1e4080d

Browse files
committed
V1.8 - add crda package and REGDOMAIN instructions
1 parent bb8b09a commit 1e4080d

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

OrangePiRDA/kernel/arch/arm/mach-rda/devices.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ void __init nand_device_init(void)
893893
}
894894
else if (rda_sdcard)
895895
{
896-
/*platform_device_register(&rda_mmc0);*/
896+
platform_device_register(&rda_mmc0);
897897
}
898898
else
899899
{

OrangePiRDA/scripts/lib/build_image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
build_rk_image() {
4-
VER="v1.7"
4+
VER="v1.8"
55
IMAGENAME="Legendary_OrangePi_${BOARD}_${OS}_${DISTRO}_${IMAGETYPE}_${VER}"
66
IMAGE="$BUILD/images/$IMAGENAME.img"
77

@@ -76,7 +76,7 @@ EOF
7676
}
7777

7878
build_rda_image() {
79-
VER="v1.7"
79+
VER="v1.8"
8080
IMAGENAME="Legendary_OrangePi_${BOARD}_${OS}_${DISTRO}_${IMAGETYPE}_${VER}"
8181
IMAGE="${BUILD}/images/$IMAGENAME.img"
8282

OrangePiRDA/scripts/lib/distributions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ apt-get -y update
485485
#rm -f "/etc/locale.gen"
486486
#dpkg-reconfigure --frontend noninteractive locales
487487
488-
apt-get -y install sudo imagemagick libv4l-dev cmake bluez apt-transport-https man subversion python3-pip python3-setuptools gpg net-tools g++ libjpeg-dev usbutils curl dosfstools curl xz-utils iw rfkill ifupdown wpasupplicant openssh-server rsync u-boot-tools vim parted network-manager git autoconf gcc libtool ntp libsysfs-dev pkg-config libdrm-dev xutils-dev alsa-utils acl
488+
apt-get -y install sudo imagemagick libv4l-dev cmake bluez apt-transport-https man subversion python3-pip python3-setuptools gpg net-tools g++ libjpeg-dev usbutils curl dosfstools curl xz-utils iw rfkill ifupdown wpasupplicant openssh-server rsync u-boot-tools vim parted network-manager git autoconf gcc libtool ntp libsysfs-dev pkg-config libdrm-dev xutils-dev alsa-utils acl crda
489489
apt-get -y install $EXTRADEBS
490490
491491
pip3 install spidev

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ Sync time:
2626
Set correct locale:
2727
<pre>sudo apt install locales -y && sudo dpkg-reconfigure locales</pre>
2828
Set wireless regulatory country:
29-
<pre>sudo iw reg set US</pre>
29+
<pre>sudo nano /etc/default/crda</pre>
30+
Add your two letter country code (mine is US) to the end of the bottom line (after the equals sign) that says REGDOMAIN=
31+
Press Ctrl+X then Y to save the file.
3032

3133
<h2>Build Instructions</h2>
3234
You should first clone the OrangePi_Build repository:<br>
@@ -44,6 +46,7 @@ Ubuntu is not building correctly yet.<br>
4446
<br>
4547
<h2>Version History</h2>
4648
<ol>
49+
<li>September 3rd 2022 - V1.8 - Add crda package and instructions to configure regulatory domain (REGDOMAIN)</li>
4750
<li>September 2nd 2022 - V1.7 - Enable systemd-resolved service to help with DNS over WiFi, remove crashing hostapd service, fix e2scrub_all service, add orangepi user to audio, bluetooth, netdev</li>
4851
<li>September 2nd 2022 - V1.6 - Fix spidev</li>
4952
<li>September 1st 2022 - V1.5 - Adds spidev interface to access SPI over the GPIO pins</li>

0 commit comments

Comments
 (0)