mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
25 lines
642 B
Desktop File
25 lines
642 B
Desktop File
[Unit]
|
|
Description=RaSCSI service
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=always
|
|
ExecStart=/usr/local/bin/rascsi -r 7
|
|
# Example 1: If you want to automatically attach a hard disk at startup,
|
|
# say an image called harddisk.hds on SCSI ID 1, change the ExecStart line to:
|
|
#
|
|
# ExecStart=/usr/local/bin/rascsi -ID1 /home/pi/images/harddisk.hds
|
|
#
|
|
# Example 2: If you want to reserve SCSI IDs to prevent usage, add '-r' followed by
|
|
# comma-separated SCSI ID numbers; for instance IDs 0 and 7:
|
|
#
|
|
# ExecStart=/usr/local/bin/rascsi -r 0,7
|
|
#
|
|
ExecStop=/usr/local/bin/rasctl -X
|
|
SyslogIdentifier=RASCSI
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|