-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from home-assistant/dev
Beta Release build 0.2
- Loading branch information
Showing
75 changed files
with
850 additions
and
108 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,13 @@ | ||
# Configuration for move-issues - https://github.com/dessant/move-issues | ||
|
||
# Delete the command comment. Ignored when the comment also contains other content | ||
deleteCommand: true | ||
# Close the source issue after moving | ||
closeSourceIssue: true | ||
# Lock the source issue after moving | ||
lockSourceIssue: false | ||
# Set custom aliases for targets | ||
# aliases: | ||
# r: repo | ||
# or: owner/repo | ||
|
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
source "$BR2_EXTERNAL_HASSIO_PATH/package/mingetty/Config.in" | ||
source "$BR2_EXTERNAL_HASSIO_PATH/package/hassio/Config.in" | ||
source "$BR2_EXTERNAL_HASSIO_PATH/package/libapparmor/Config.in" | ||
source "$BR2_EXTERNAL_HASSIO_PATH/package/apparmor/Config.in" |
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,75 @@ | ||
#include <tunables/global> | ||
|
||
profile hassio-supervisor flags=(attach_disconnected,mediate_deleted) { | ||
#include <abstractions/base> | ||
#include <abstractions/python> | ||
|
||
network, | ||
deny network raw, | ||
|
||
signal (send) set=(kill,term), | ||
|
||
/bin/busybox ix, | ||
/usr/bin/python{,3,3.[0-9]} ix, | ||
/usr/bin/git cx, | ||
/usr/bin/socat cx, | ||
/usr/bin/gdbus cx, | ||
|
||
deny /proc/** wl, | ||
deny /root/** wl, | ||
deny /sys/** wl, | ||
|
||
/** r, | ||
/tmp/** rw, | ||
/data/** rw, | ||
/{,var/}run/docker.sock rw, | ||
|
||
capability net_bind_service, | ||
|
||
profile /usr/bin/socat flags=(attach_disconnected,mediate_deleted) { | ||
#include <abstractions/base> | ||
|
||
network inet udp, | ||
network inet tcp, | ||
|
||
deny network raw, | ||
deny network packet, | ||
|
||
signal (receive) set=(kill,term), | ||
capability net_bind_service, | ||
|
||
/lib/* mr, | ||
/usr/bin/socat mr, | ||
} | ||
|
||
profile /usr/bin/gdbus flags=(attach_disconnected,mediate_deleted) { | ||
#include <abstractions/base> | ||
#include <abstractions/dbus> | ||
|
||
unix (send, receive) type=stream, | ||
|
||
/usr/bin/gdbus mr, | ||
/lib/* mr, | ||
/{,var/}run/dbus/system_bus_socket rw, | ||
} | ||
|
||
profile /usr/bin/git flags=(attach_disconnected,mediate_deleted) { | ||
#include <abstractions/base> | ||
|
||
network, | ||
deny network raw, | ||
|
||
/bin/busybox ix, | ||
/usr/bin/git mr, | ||
/usr/libexec/git-core/* ix, | ||
|
||
deny /data/homeassistant rw, | ||
deny /data/ssl rw, | ||
|
||
/** r, | ||
/lib/* mr, | ||
/data/addons/** lrw, | ||
|
||
capability dac_override, | ||
} | ||
} |
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,3 @@ | ||
#!/bin/sh | ||
|
||
boot |
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 @@ | ||
Autoboot |
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,3 @@ | ||
#!/bin/sh | ||
|
||
boot system0 |
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 @@ | ||
Boot System 0 |
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,3 @@ | ||
#!/bin/sh | ||
|
||
boot system1 |
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 @@ | ||
Boot System 1 |
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,5 @@ | ||
#!/bin/sh | ||
|
||
echo "Enter 'exit' to get back to the menu" | ||
|
||
sh |
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 @@ | ||
Shell |
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 @@ | ||
Hass.io OS boot Menu: |
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 @@ | ||
sedit |
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,5 +1,5 @@ | ||
#!/bin/sh | ||
|
||
global bootm.image="/mnt/disk1/boot/bzImage" | ||
global linux.bootargs.dyn.root="root=/dev/sda2 rootfstype=squashfs ro" | ||
global linux.bootargs.dyn.root="root=PARTUUID=8d3d53e3-6d49-4c38-8349-aff6859e82fd rootfstype=squashfs ro" | ||
|
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,4 +1,4 @@ | ||
#!/bin/sh | ||
|
||
global bootm.image="/mnt/disk2/boot/bzImage" | ||
global linux.bootargs.dyn.root="root=/dev/sda3 rootfstype=squashfs ro" | ||
global linux.bootargs.dyn.root="root=PARTUUID=a3ec664e-32ce-4665-95ea-7ae90ce9aa20 rootfstype=squashfs ro" |
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
BOARD_ID=ova | ||
BOARD_NAME="Open Virtual Appliance" | ||
CHASSIS=vm |
Oops, something went wrong.