mirror of
https://github.com/apache/nuttx.git
synced 2026-05-15 21:19:09 +08:00
13 lines
287 B
Plaintext
13 lines
287 B
Plaintext
# Mount the procfs file system at /proc
|
|
|
|
mount -t procfs /proc
|
|
echo "rcS: Mounted /proc"
|
|
|
|
# Create a RAMDISK at /dev/ram1, size 0.5MiB, format it with a FAT
|
|
# file system and mount it at /tmp
|
|
|
|
mkrd -m 1 -s 512 1024
|
|
mkfatfs /dev/ram1
|
|
mount -t vfat /dev/ram1 /tmp
|
|
echo "rcS: Mounted /tmp"
|