Improve example in manual page
authorHilko Bengen <bengen@debian.org>
Mon, 11 Mar 2024 23:05:45 +0000 (00:05 +0100)
committerHilko Bengen <bengen@debian.org>
Fri, 16 Aug 2024 00:39:35 +0000 (02:39 +0200)
Gbp-Pq: Name 0001-Improve-example-in-manual-page.patch

src/supermin.pod

index e3698ebfcd510ec9f54f2c80e5c7f539de156dd2..4d4a2c9167bb4f2333d0b0f941e57de301e3f532 100644 (file)
@@ -12,10 +12,10 @@ supermin - Tool for creating and building supermin appliances
 
 =head1 EXAMPLE
 
- supermin --prepare bash util-linux -o /tmp/supermin.d
+ supermin --prepare bash mount util-linux coreutils -o /tmp/supermin.d
  
  cat > init <<EOF
- #!/bin/sh
+ #!/bin/bash
  mount -t proc /proc /proc
  mount -t sysfs /sys /sys
  echo Welcome to supermin
@@ -27,7 +27,8 @@ supermin - Tool for creating and building supermin appliances
  
  supermin --build /tmp/supermin.d -f ext2 -o /tmp/appliance.d
  
- qemu-kvm -nodefaults -nographic \
+ qemu-system-$ARCH \
+          -nodefaults -nographic \
           -kernel /tmp/appliance.d/kernel \
           -initrd /tmp/appliance.d/initrd \
           -hda /tmp/appliance.d/root \