<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.lindeni.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Given</id>
		<title>Lindenis Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.lindeni.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Given"/>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php/Special:Contributions/Given"/>
		<updated>2026-05-06T06:47:42Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=351</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=351"/>
				<updated>2018-10-11T07:33:03Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* UART configuration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header. And the bit rate is 115200 bps.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD (following [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf this guide] to connect LCD panel) or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
== CTP ==&lt;br /&gt;
After you connected the CTP panel to the board(see [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf the guide]), insmod its driver like this:&lt;br /&gt;
 sudo insmod /lib/modules/4.4.55+/gt9xx_ts.ko&lt;br /&gt;
&lt;br /&gt;
'''Notice : The CTP driver in the image on FTP server is not the latest version, you should download our SDK and compile the image by yourself to confirm CTP work well. '''&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=350</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=350"/>
				<updated>2018-10-11T07:31:16Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* CTP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD (following [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf this guide] to connect LCD panel) or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
== CTP ==&lt;br /&gt;
After you connected the CTP panel to the board(see [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf the guide]), insmod its driver like this:&lt;br /&gt;
 sudo insmod /lib/modules/4.4.55+/gt9xx_ts.ko&lt;br /&gt;
&lt;br /&gt;
'''Notice : The CTP driver in the image on FTP server is not the latest version, you should download our SDK and compile the image by yourself to confirm CTP work well. '''&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=349</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=349"/>
				<updated>2018-10-10T11:59:54Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Step 3 : Change display device configuration with FDT tool */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD (following [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf this guide] to connect LCD panel) or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
== CTP ==&lt;br /&gt;
After you connected the CTP panel to the board(see [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf the guide]), insmod its driver like this:&lt;br /&gt;
 sudo insmod /lib/modules/4.4.55+/gt9xx_ts.ko&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=348</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=348"/>
				<updated>2018-10-10T11:58:21Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* CTP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
== CTP ==&lt;br /&gt;
After you connected the CTP panel to the board(see [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_LCD_CTP_Installation_Guide.pdf the guide]), insmod its driver like this:&lt;br /&gt;
 sudo insmod /lib/modules/4.4.55+/gt9xx_ts.ko&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=347</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=347"/>
				<updated>2018-10-10T11:57:20Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
== CTP ==&lt;br /&gt;
After you connected the CTP panel to the board(see the guide), insmod its driver like this:&lt;br /&gt;
 sudo insmod /lib/modules/4.4.55+/gt9xx_ts.ko&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=346</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=346"/>
				<updated>2018-10-10T11:53:18Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Display */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Fdt.png|frameless]]&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=File:Fdt.png&amp;diff=345</id>
		<title>File:Fdt.png</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=File:Fdt.png&amp;diff=345"/>
				<updated>2018-10-10T11:52:49Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;fdt tools&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=344</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=344"/>
				<updated>2018-10-10T11:48:45Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Step 2 : Enter U-boot command mode */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:U-boot fdt.jpg|frameless|left]]&lt;br /&gt;
&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=343</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=343"/>
				<updated>2018-10-10T11:47:31Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Display */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless]]&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=342</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=342"/>
				<updated>2018-10-10T11:45:16Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Display */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&amp;lt;br&amp;gt;&lt;br /&gt;
The default display device of the SDK and the image on FTP server is HDMI(1080p).&amp;lt;br&amp;gt;&lt;br /&gt;
If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&amp;lt;br&amp;gt;&lt;br /&gt;
After you connected successfully, you will see the log show on the PC serial software like this:&lt;br /&gt;
&lt;br /&gt;
=== Step 2 : Enter U-boot command mode===&lt;br /&gt;
Power on and press any key within 1s when you see the message below,then you can enter u-boot command mode.&amp;lt;br&amp;gt;&lt;br /&gt;
Under this mode, you can modify the kernel devices tree by FDT tools in u-boot.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 3 : Change display device configuration with FDT tool===&lt;br /&gt;
Input the follow command to set display device to LCD or HDMI (1080p):&amp;lt;br&amp;gt;&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x01&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x04&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 fdt set boot_disp output_type &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set boot_disp output_mode &amp;lt;0x00&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_type &amp;lt;0x03&amp;gt;;&lt;br /&gt;
 fdt set disp screen0_output_mode &amp;lt;0x0a&amp;gt;;&lt;br /&gt;
 fdt save;&lt;br /&gt;
 reset;&lt;br /&gt;
&lt;br /&gt;
=== Step 4 : Change X11 configuration===&lt;br /&gt;
After you change the display device, you should also tell the X11. Log in the system and modify the X11 configuration like this:&lt;br /&gt;
'''LCD:'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_lcd.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 22 Oct 10 10:41 xorg.conf -&amp;gt; ./conf.d/xorg_lcd.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;br /&gt;
&lt;br /&gt;
'''HDMI (1080p):'''&lt;br /&gt;
 ai@linbian:~$ cd /etc/X11/&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo ln -sf ./conf.d/xorg_hdmi.conf ./xorg.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ ls -l xorg.conf&lt;br /&gt;
 lrwxrwxrwx 1 root root 23 Oct 10 10:46 xorg.conf -&amp;gt; ./conf.d/xorg_hdmi.conf&lt;br /&gt;
 ai@linbian:/etc/X11$ sudo systemctl restart lightdm&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=File:U-boot_fdt.jpg&amp;diff=341</id>
		<title>File:U-boot fdt.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=File:U-boot_fdt.jpg&amp;diff=341"/>
				<updated>2018-10-10T11:30:52Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;u-boot fdt tools&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=340</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=340"/>
				<updated>2018-10-10T11:25:54Z</updated>
		
		<summary type="html">&lt;p&gt;Given: /* Display */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&lt;br /&gt;
&amp;lt;br /&amp;gt;The default display device of the SDK and the image on FTP server is HDMI(1080p).&lt;br /&gt;
&amp;lt;br /&amp;gt;If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&lt;br /&gt;
&amp;lt;br /&amp;gt;After you connected successfully, you will see the log show on the PC serial software like this:&lt;br /&gt;
&lt;br /&gt;
[[File:Booting up message.jpg|frameless|left]]&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=339</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=339"/>
				<updated>2018-10-10T11:20:25Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&lt;br /&gt;
&amp;lt;br /&amp;gt;The default display device of the SDK and the image on FTP server is HDMI(1080p).&lt;br /&gt;
&amp;lt;br /&amp;gt;If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;br /&gt;
=== Step 1 : Connect serial to control the board===&lt;br /&gt;
Firstly, you should connect the board's UART0 to computer through a serial-USB cable so that you can send commands to the board through a PC serial software like Putty.&lt;br /&gt;
&amp;lt;br /&amp;gt;After you connected successfully, you will see the log show on the PC serial software like this:&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=File:Booting_up_message.jpg&amp;diff=338</id>
		<title>File:Booting up message.jpg</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=File:Booting_up_message.jpg&amp;diff=338"/>
				<updated>2018-10-10T11:18:14Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is the serial console booting up message.&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	<entry>
		<id>http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=337</id>
		<title>Linbian Configuration</title>
		<link rel="alternate" type="text/html" href="http://wiki.lindeni.org/index.php?title=Linbian_Configuration&amp;diff=337"/>
				<updated>2018-10-10T09:28:56Z</updated>
		
		<summary type="html">&lt;p&gt;Given: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== linbian-config ==&lt;br /&gt;
&lt;br /&gt;
In development&lt;br /&gt;
&lt;br /&gt;
== UART configuration ==&lt;br /&gt;
&lt;br /&gt;
By default, the ttyS0 is assigned to the Linux console. The UART transmit and receive pins are on PB9 and PB10 espectively, which are pins 8 and 10 on the 'PI BUS' GPIO header.&lt;br /&gt;
&lt;br /&gt;
== Ethernet ==&lt;br /&gt;
&lt;br /&gt;
Ethernet is enabled by default. Plug in the network cable will automatically connect to the Internet.&lt;br /&gt;
&lt;br /&gt;
[https://launchpad.net/wicd Wicd] is used for manage wireless and wired interface.&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Desktop Environment ===&lt;br /&gt;
&lt;br /&gt;
Open '''Wicd Network Manager''' from desktop. If the board is properly set up and connected, you should see a Window as follow.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wired.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
=== Running Wicd in Text Mode ===&lt;br /&gt;
&lt;br /&gt;
Open a Terminal from desktop. Type '''wicd-curses''':&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-curses.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Manage network by keyboard.&lt;br /&gt;
&lt;br /&gt;
== Wi-Fi ==&lt;br /&gt;
&lt;br /&gt;
=== Installing ===&lt;br /&gt;
&lt;br /&gt;
Lindenis V5 without builtin Wi-Fi. Follow [http://files.lindeni.org/lindenis-v5/accessories/Lindenis_V5_Wi-Fi_Bluetooth_Installation_Guide.pdf these instructions] and install a module.&lt;br /&gt;
&lt;br /&gt;
=== Add Service In Running Environment ===&lt;br /&gt;
&lt;br /&gt;
Add configure file wifi.conf in /etc/modules-load.d, and the context of the configure file is the driver name, for example :bcmdhd&lt;br /&gt;
&lt;br /&gt;
Reboot the system&lt;br /&gt;
&lt;br /&gt;
=== Configuration ===&lt;br /&gt;
&lt;br /&gt;
Manage Wi-Fi by Wicd (open '''Wicd Network Manager''' from desktop).&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
Click '''Properties''' button to set access point password.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-prop.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
And then click '''Connect''' button to get access.&lt;br /&gt;
&lt;br /&gt;
[[File:wicd-nm-wireless-connected.png|frameless]]&lt;br /&gt;
&lt;br /&gt;
== Bluetooth ==&lt;br /&gt;
Bluetooth firmware and service are not installed by default&lt;br /&gt;
=== Add configure file ===&lt;br /&gt;
add configure file bt in &amp;quot;device/eagle/rootfs/etc&amp;quot; of sdk or &amp;quot;/etc&amp;quot; in running environment, and the context as follow:&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 #&lt;br /&gt;
 # Shell script to install Bluetooth firmware and attach BT part of&lt;br /&gt;
 #&lt;br /&gt;
 TTY=&amp;quot;/dev/ttyS1&amp;quot;&lt;br /&gt;
 BT_POWER_MGR_PATH=/sys/class/rfkill/rfkill0&lt;br /&gt;
 BT_FW_PATH=/lib/firmware/rtl_bt&lt;br /&gt;
 test -d $BT_POWER_MGR_PATH || exit 1&lt;br /&gt;
 test -d $BT_FW_PATH || exit 1&lt;br /&gt;
 echo &amp;quot;Using device $TTY for initializing Bluetooth&amp;quot;&lt;br /&gt;
 #BT power initialize&lt;br /&gt;
 echo 0 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 sleep 0.1&lt;br /&gt;
 echo 1 &amp;gt; /sys/class/rfkill/rfkill0/state&lt;br /&gt;
 brcm_patchram_plus --patchram /etc/firmware/BCM4345C0.hcd --no2bytes --tosleep 1000 $TTY&lt;br /&gt;
 hciattach $TTY any&lt;br /&gt;
 exit 0&lt;br /&gt;
&lt;br /&gt;
=== Add Service ===&lt;br /&gt;
If you want to add service in running environment, you can use the following cmd:&lt;br /&gt;
 insserv /etc/init.d/bt&lt;br /&gt;
If you want to add service in sdk, you should modify &amp;quot;debain/mk-rootfs-stretch.sh&amp;quot; as follow:&lt;br /&gt;
&lt;br /&gt;
 diff --git a/mk-rootfs-stretch.sh b/mk-rootfs-stretch.sh&lt;br /&gt;
 index 75dd3ce..c46d605 100755&lt;br /&gt;
 --- a/mk-rootfs-stretch.sh&lt;br /&gt;
 +++ b/mk-rootfs-stretch.sh&lt;br /&gt;
 @@ -91,6 +91,10 @@ if insserv -s | grep mpp &amp;gt; /dev/null ; then&lt;br /&gt;
 insserv /etc/init.d/mpp&lt;br /&gt;
 fi&lt;br /&gt;
 +if insserv -s | grep bt &amp;gt; /dev/null ; then&lt;br /&gt;
 +insserv /etc/init.d/bt&lt;br /&gt;
 +fi&lt;br /&gt;
 +&lt;br /&gt;
 apt-get install -y bash-completion&lt;br /&gt;
&lt;br /&gt;
=== Manage Bt devices ===&lt;br /&gt;
&lt;br /&gt;
You can use some open source tools, for example :sudo apt-get install blueman&lt;br /&gt;
&lt;br /&gt;
== Camera Config ==&lt;br /&gt;
&lt;br /&gt;
== External Storage Config ==&lt;br /&gt;
&lt;br /&gt;
== Localisation ==&lt;br /&gt;
&lt;br /&gt;
== Display ==&lt;br /&gt;
Because of the limitation that there is one display engine module in V5, V5 board can not support dual-display.&lt;br /&gt;
&amp;lt;br /&amp;gt;The default display device of the SDK and the image on FTP server is HDMI(1080p).&lt;br /&gt;
&amp;lt;br /&amp;gt;If you have download the image from FTP server,and burn it into SD card or eMMC, you can switch the display device follow these steps:&lt;/div&gt;</summary>
		<author><name>Given</name></author>	</entry>

	</feed>