mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
8e682bcb00
Fix lowercase label to avoid "mkfs.fat: Warning: lowercase labels might not work properly on some systems". Signed-off-by: Ravi kumar Veeramally <ravikumar.veeramally@intel.com>
10 lines
350 B
Bash
Executable File
10 lines
350 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
rm -f /tmp/ubuntu-cloudinit.img
|
|
mkdosfs -n CIDATA -C /tmp/ubuntu-cloudinit.img 8192
|
|
mcopy -oi /tmp/ubuntu-cloudinit.img -s test_data/cloud-init/ubuntu/user-data ::
|
|
mcopy -oi /tmp/ubuntu-cloudinit.img -s test_data/cloud-init/ubuntu/meta-data ::
|
|
mcopy -oi /tmp/ubuntu-cloudinit.img -s test_data/cloud-init/ubuntu/network-config ::
|
|
|