Skip to content

Commit

Permalink
Rearrange scripts, add issues template
Browse files Browse the repository at this point in the history
  • Loading branch information
jetsonhacks committed May 21, 2020
1 parent 7d02202 commit 98a0797
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 3 deletions.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Issue report
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees: ''

---

**Describe the issue**
Please describe the issue

**What version of L4T/JetPack**
L4T/JetPack version:

**Which Jetson**
Jetson:

**To Reproduce**
Steps to reproduce the behavior:
For example, what command line did you run?

**Expected behavior**
A clear and concise description of what you expected to happen.

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE REQUEST]"
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Then, setup the service. This will copy the .service file to the correct locatio
$ ./setup-service.sh
```

Note that setssdroot.sh is the script for installation, and should not be run individually. After setting up the service, reboot for the changes to take effect.
After setting up the service, reboot for the changes to take effect.

### Boot Notes
These script changes the rootfs to the SSD after the kernel image is loaded from the eMMC/SD card. For the Xavier NX, you will still need to have the SD card installed for booting. As of this writing, the default configuration of the Jetson NX does not allow direct booting from the NVMe.
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions setup-service.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Setup the service to set the rootfs to point to the SSD
sudo cp setssdroot.service /etc/systemd/system
sudo cp setssdroot.sh /sbin
sudo cp data/setssdroot.service /etc/systemd/system
sudo cp data/setssdroot.sh /sbin
sudo chmod 777 /sbin/setssdroot.sh
systemctl daemon-reload
sudo systemctl enable setssdroot.service
Expand Down

0 comments on commit 98a0797

Please sign in to comment.