There is a black bar that appears on right hand side of the screen. Below is picture of the issues.
The display is from 4D Systems
Based on TI-Android-JB-4.2.2-DevKit-4.1.1 UserGuide the black bar represents a navigation bar. Following is image of the expected image.
The TI-Android-JB-4.2.2-DevKit-4.1.1 PortingGuide has the following suggestion from section 3.5.2 Navigation Keys
To activate the Software Navigation Bar, add the following line in overlay/frameworks/base/core/res/res/values/config.xml. This is done by default for AM335x EVM
<bool name="config_showNavigationBar">true</bool>
The kernel has been complied with both Boolean values true and false, with the hope that the navigation bar with will be visible as intended or the navigation bar including the black bar is not visible. Either is fine, but not half way.
The following links were referenced in an attempt to resolve this issue.
Solution
Add the following line as suggested in init.am335xevm.rc file.
setprop lcd.landscape true
The image with navigation keys after applying
A black bar will appear if the display is in landscape mode and the display resolution is low (not high enough). In order to view the navigation keys add the following lines to init.{ro.hardware|.rc file.
# This board has landscape LCD, enable rotation of keys on Navigation bar
setprop lcd.landscape true
If the device is rooted try the following using the command to enable or disable the navigation keys
adb shell pm disable/enable com.android.systemui
Refer to this link for further details.