Epics@GSI Webhome

Dreamplug Create Bootable USB Device From Local System

Requirements

How-to

Create your bootable USB / SD card device.

  1. "script based"
    • download the script dreamplugCreateBootDeviceFunctionSet.sh
    • NOTE: our dreamplug devices, already contain this script at ~/dreamplugCreateBootDeviceFunctionSet.sh
    • set variables:
      • target, target device, e.g. sdd
      • source, uimage source device, e.g. sda
      • tmpusr=restore, temporary user to be created
      • tmppwd=nosoup4u, its password
      • master=root@ee-dev004, system to be exported
    • source the script and use its functions:
      SINGLE action
      createBootDevicePartition partitions your device into 2 partitions:
      * first partition: FAT16, ≈ 30MB
      * second partition: ext3, the rest
      createBootDevicePrepareSystem on the ssh remote machine defined by master
      * mounts uimage source device,
      * creates temporary account,
      * assigns its password,
      * adds it to the /etc/sudoers,
      * adds a cronjob to delete this user at reboot
      createBootDeviceMounts mounts local target devices
      createBootDeviceRsync rsyncs master sources to target mounts
      createBootDeviceUnmounts unmounts devices
      createBootDeviceRestoreSource restore system:
      * deleting temporary user
      * removing crontab entry
      * removing /etc/sudores entry
      * unmounts uimage source device
      actions SET
      createBootDevice combines all: %FOREACH{"fcn" in="Partition, PrepareSystem, Mounts, Rsyncs, Umounts, RestoreSystem"}%
          createBootDevice$fcn %NEXT{"fcn"}%
      createBootDeviceMountRsyncUmount combines: %FOREACH{"fcn" in="Mounts, Rsyncs, Umounts"}%
          createBootDevice$fcn %NEXT{"fcn"}%
      functions are only executed if precursor results ok
      allows multiple target setting before restoring the source
      createBootDeviceNoPartitioning combines: %FOREACH{"fcn" in="PrepareSystem, Mounts, Rsyncs, Umounts, RestoreSystem"}%
          createBootDevice$fcn %NEXT{"fcn"}%

Example "all"
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDevice;
Example "no partitioning"
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDeviceNoPartioning;
Example "no partitioning, multiple targets"
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDevicePrepareSystem &&

createBootDeviceMountRsyncUmount &&
target=sdb &&
createBootDeviceMountRsyncUmount &&

createBootDeviceRestoreSource

    Script code
    dreamplugCreateBootDeviceFunctionSet.sh

-- PeterZumbruch - 22 Feb 2016
-- PeterZumbruch - 2016-02-26

Topic revision: r25 - 2016-02-26, PeterZumbruch
This site is powered by FoswikiCopyright © by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding GSI Wiki? Send feedback | Legal notice | Privacy Policy (german)