Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
#!/bin/sh

image=$1

if [ "x${image}" = "x" ] ; then
  exit 1
fi

#
# +8M
#
dd if=/dev/zero of=${image} bs=512 count=18432 1>/dev/null 2>/dev/null
/sbin/fdisk --wipe=always --wipe-partition=always ${image} 1>/dev/null 2>/dev/null <<EOF
n
p
1
2048
18431
t
83
w
EOF