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
     5         kx #!/bin/sh
     5         kx 
     5         kx image=$1
     5         kx 
     5         kx if [ "x${image}" = "x" ] ; then
     5         kx   exit 1
     5         kx fi
     5         kx 
     5         kx #
     5         kx # +8M
     5         kx #
     5         kx dd if=/dev/zero of=${image} bs=512 count=18432 1>/dev/null 2>/dev/null
     5         kx /sbin/fdisk --wipe=always --wipe-partition=always ${image} 1>/dev/null 2>/dev/null <<EOF
     5         kx n
     5         kx p
     5         kx 1
     5         kx 2048
     5         kx 18431
     5         kx t
     5         kx 83
     5         kx w
     5         kx EOF