├── LICENSE ├── README.md ├── bin └── pavo ├── etc └── suzaku │ ├── flight │ ├── land │ ├── suzaku.conf │ └── takeoff ├── services ├── agetty-tty1 │ └── run ├── dhcpcd │ ├── log │ │ └── run │ └── run ├── mpd │ └── run └── mpdscribble │ └── run └── sinit.config.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/README.md -------------------------------------------------------------------------------- /bin/pavo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/bin/pavo -------------------------------------------------------------------------------- /etc/suzaku/flight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/etc/suzaku/flight -------------------------------------------------------------------------------- /etc/suzaku/land: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/etc/suzaku/land -------------------------------------------------------------------------------- /etc/suzaku/suzaku.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/etc/suzaku/suzaku.conf -------------------------------------------------------------------------------- /etc/suzaku/takeoff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/etc/suzaku/takeoff -------------------------------------------------------------------------------- /services/agetty-tty1/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec agetty -J -8 -s 38400 tty1 linux 3 | -------------------------------------------------------------------------------- /services/dhcpcd/log/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/services/dhcpcd/log/run -------------------------------------------------------------------------------- /services/dhcpcd/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec dhcpcd -B 3 | -------------------------------------------------------------------------------- /services/mpd/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec mpd --no-daemon 3 | -------------------------------------------------------------------------------- /services/mpdscribble/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/services/mpdscribble/run -------------------------------------------------------------------------------- /sinit.config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arrowheads/suzaku/HEAD/sinit.config.h --------------------------------------------------------------------------------