]> git.proxmox.com Git - ceph.git/blame - ceph/src/push_to_qemu.pl
bump version to 12.2.10-pve1
[ceph.git] / ceph / src / push_to_qemu.pl
CommitLineData
7c673cae
FG
1#!/usr/bin/perl
2
3use strict;
4
5my $usage = "./push_to_qemu.pl <path_to_qemu>\n";
6
7my $qemu = shift @ARGV || die $usage;
8die $usage unless -d $qemu;
9
10die "not in a git tree" unless `cd $qemu && git rev-parse HEAD`;
11
12my $dir = '.';
13until (-d "$dir/.git") {
14 $dir .= "/..";
15}
16
17print "pushing changed shared files from $dir to $qemu...\n";
18system "cat $dir/src/include/rbd_types.h | sed 's/__u32/uint32_t/g; s/__u8/uint8_t/g; s/__.*16/uint16_t/g; s/__.*32/uint32_t/g; s/__.*64/uint64_t/g; s/_FS_CEPH_RBD/QEMU_BLOCK_RBD_TYPES_H/g; s/^\t/ /g' | expand | grep -v \"linux/types.h\" > $qemu/block/rbd_types.h";
19
20print "done.\n";
21