uboot
configuration dreamplugCreateBootDeviceFunctionSet.sh
~/dreamplugCreateBootDeviceFunctionSet.sh
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
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"}% |
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDevice;
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDeviceNoPartioning;
target=sdd; source=sda; tmpusr=restore; tmppwd=nosoup4u; master=root@ee-dev004;
createBootDevicePrepareSystem &&
createBootDeviceMountRsyncUmount &&
target=sdb &&
createBootDeviceMountRsyncUmount &&
createBootDeviceRestoreSource