merge rusEFI wiki

This commit is contained in:
GitHub Action 2021-07-27 03:28:57 +00:00
commit 25401c68e8
2 changed files with 41 additions and 8 deletions

View File

@ -179,13 +179,14 @@ Suzuki Hayabusa
<a name="64"/>
## 64 pin Nissan
## 64 pin Nissan center lock
https://www.te.com/usa-en/product-174836-5.html
90-94
center bolt
TBD we have no idea
## 64 pin
http://www.te.com/catalog/pn/en/176122-6
@ -251,10 +252,6 @@ VW Jetta, Passat
See http://faculty.ccp.edu/faculty/dreed/Campingart/jettatech/techset/index.htm
## 68 pin center lock
https://www.te.com/usa-en/product-174836-5.html
<a name="72"/>
## 72 pin

View File

@ -32,8 +32,6 @@ https://www.hackster.io/mexmarv/iot-raspberry-pi-wifi-headless-setup-6be0de
https://www.furkantokac.com/rpi3-fast-boot-less-than-2-seconds/
https://medium.com/swlh/make-your-raspberry-pi-file-system-read-only-raspbian-buster-c558694de79
# latest packages
sudo apt-get update && apt-get upgrade
sudo apt-get remove --purge triggerhappy logrotate dphys-swapfile
@ -62,6 +60,44 @@ https://rusefi.com/forum/viewtopic.php?p=37563#p37563
http://wiki.friendlyarm.com/wiki/index.php/NanoPi_Duo2#Dimensional_Diagram
### SD card preparation
Resize primary partition https://elinux.org/RPi_Resize_Flash_Partitions#Resizing
```
lsusb
lsblk
resize2fs /dev/sdb 4g
parted /dev/sdb
resizepart 1
4300 works good for 4g filesystem
quit
e2fsck -f /dev/sdb1
fdisk -l /dev/sdb
to see last used sector and total number of sectors
fdisk /dev/sdb
n for 'new'
p for 'primary'
2
begin (last used sector+1)
end ( total number of sectors -1)
blkid /dev/sdb2 | awk -F'"' '{print $2}'
UUID=0e281f8d-1117-451d-9b1b-b07405a631bc /rw auto nosuid,nodev,nofail 0 0
```
now add ",ro" into /etc/fstab
https://medium.com/swlh/make-your-raspberry-pi-file-system-read-only-raspbian-buster-c558694de79
backup
dd if=/dev/sdb of=2021_July_26_orange_zero.img
# Orange PI CI setup