mirror of
https://github.com/thamugadi/powerpc-ofw-boot.git
synced 2025-01-30 08:30:23 +00:00
6 lines
167 B
Bash
Executable File
6 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
LOOP=$(sudo kpartx -s -a -v DISK.APM | awk -F'[ ]' '{print $3}' | tail -n1 )
|
|
sudo mkfs.hfsplus /dev/mapper/$LOOP
|
|
sudo mount -o loop /dev/mapper/$LOOP /mnt/
|