Jump to content

shahidali55

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by shahidali55

  1. Thanks tkaiser and psbkkim. This works perfectly for my new 7inch HDMI display and Orange Pi One running Armbian 5.14 (legacy kernel). Steps followed: sudo nano /etc/modules +hid_multitouch cp /boot/script.bin . bin2fex script.bin script.fex sudo nano script.fex -fb0_width = 0 -fb0_height = 0 +fb0_width = 1024 +fb0_height = 600 sudo fex2bin ./script.fex /boot/script.bin sudo shutdown -r now
  2. Or add the below line above the iface line for eth0 in /etc/network/interfaces: allow-hotplug eth0 This is how my /etc/network/interfaces file looks like: # Wired adapter #1 allow-hotplug eth0 iface eth0 inet dhcp # hwaddress ether # if you want to set MAC manually # pre-up /sbin/ifconfig eth0 mtu 3838 # setting MTU for DHCP, static just: mtu 3838 # Wired adapter #2 #allow-hotplug eth1 #iface eth1 inet dhcp # hwaddress ether # if you want to set MAC manually # pre-up /sbin/ifconfig eth0 mtu 3838 # setting MTU for DHCP, static just: mtu 3838 # Wireless adapter #1 #allow-hotplug wlan0 #iface wlan0 inet dhcp # wpa-ssid SSID # wpa-psk xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # to generate proper encrypted key: wpa_passphrase yourSSID yourpassword auto wlan0 iface wlan0 inet dhcp wpa-ssid sharksInThePool wpa-psk xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # Local loopback auto lo iface lo inet loopback
  3. Thanks EvgeniK45, this works perfectly on the Orange Pi One with Armbian 5.14. Red LED lights up almost immediately after power is connected. It switches off after shutdown (shutdown -h now). This can now be used to detect system state in my case where a 10 minute power backup is available after mains failure and system needs to be safely shutdown/rebooted after power is restored. Now only if there was something on the Orange Pi One like the RUN jumper on the raspberry pi to reset the system externally ...
  4. sudo systemctl disable wicd.service this will disable wicd from starting up after boot
  5. @Kris: Follow the below steps to compile the driver: git clone https://github.com/pvaret/rtl8192cu-fixes cd rtl8192cu-fixes make ARCH=arm # when done sudo insmod 8192cu.ko sudo cp ./blacklist-native-rtl8192.conf /etc/modprobe.d/ sudo cp ./8192cu-disable-power-management.conf /etc/modprobe.d/8192cu.conf Disable 8189es driver and enable newly compiled driver: sudo nano /etc/modules-load.d/modules.conf The file should look like below. Add 8192cu to a new line at the bottom and add a # on 8189es line #----------disable standard Armbian driver # 8189es #----------enable fixed WIFI RealTek driver 8192cu Reboot and first test connecting to some AP. Then try fiddling with hostapd . . .
  6. Working perfectly on the Orange Pi One. Just had to change "Card 2" to "Card 1". Also, kodi would not load any media if the /etc/asound.conf file was missing. Recreating the file with the new contents as above fixed the problem
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines