-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
163 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#### What were you doing? | ||
|
||
[Please be as specific as possible here] | ||
|
||
#### What did you expect to happen? | ||
|
||
#### What happened instead? | ||
|
||
#### Was there an error message displayed? What did it say? | ||
|
||
#### Version of FullPageOS? | ||
|
||
[Can be found in /etc/fullpageos_version ALWAYS INCLUDE.] | ||
|
||
#### Screenshot(s) showing the problem: | ||
|
||
[If applicable. Always include if unsure or reporting UI issues.] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
if [ ! -f /etc/gpu_enabled ]; then | ||
sudo sed 's@matchbox-window-manager \&@compton --backend glx --unredir-if-possible --glx-swap-method buffer-age --glx-no-stencil --paint-on-overlay --vsync opengl &\nmatchbox-window-manager \&@g' -i /home/pi/scripts/run_onepageos | ||
sudo sed -i /boot/cmdline.txt -e "s/ quiet//" | ||
sudo sed -i /boot/cmdline.txt -e "s/ splash//" | ||
sudo sed -i /boot/cmdline.txt -e "s/ plymouth.ignore-serial-consoles//" | ||
sudo sed -i /boot/config.txt -e "s/^\#dtoverlay=vc4-kms-v3d/dtoverlay=vc4-kms-v3d/" | ||
sudo sed -i /boot/config.txt -e "s/^gpu_mem/\#gpu_mem/" | ||
printf "dtoverlay=vc4-kms-v3d\n" | sudo tee -a /boot/config.txt | ||
touch /etc/gpu_enabled | ||
sudo shutdown -r now | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/bash | ||
chromium-browser --kiosk --touch-events=enabled --disable-pinch --noerrdialogs --app=$(head -n 1 /boot/fullpageos.txt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.6.0 | ||
0.7.0 |
1 change: 0 additions & 1 deletion
1
src/filesystem/root_init/etc/apt/sources.list.d/chromium-browser.list
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
src/filesystem/root_init/etc/systemd/system/enable_gpu_first_boot.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
[Unit] | ||
Description=on first boot set up GPU acceleration | ||
[Service] | ||
ExecStart=/home/pi/scripts/enable_gpu | ||
ExecStop= | ||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
Vagrant.configure("2") do |o| | ||
# o.vm.box = "fullpageos-build" | ||
o.vm.box= "https://github.com/kraksoft/vagrant-box-ubuntu/releases/download/15.04/ubuntu-15.04-amd64.box" | ||
#o.vm.box= "https://github.com/kraksoft/vagrant-box-ubuntu/releases/download/15.04/ubuntu-15.04-amd64.box" | ||
o.vm.box= "ubuntu/zesty64" | ||
o.ssh.shell = "bash -c 'BASH_ENV=/etc/profile exec bash'" | ||
o.vm.synced_folder "../../", "/FullPageOS", create:true, type: "nfs" | ||
o.vm.network :private_network, ip: "192.168.55.55" | ||
o.vm.provision :shell, :path => "setup.sh", args: ENV['SHELL_ARGS'] | ||
|
||
o.vm.provider "virtualbox" do |v| | ||
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] | ||
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"] | ||
end | ||
|
||
|
||
end |