diff --git a/dist/tools/packer/preseed.cfg b/dist/tools/packer/preseed.cfg
index 856d39154554561d2dfd16c36c02780e822172d9..30eaa4a1610d8f5bbea202242ca665a34af3ccef 100644
--- a/dist/tools/packer/preseed.cfg
+++ b/dist/tools/packer/preseed.cfg
@@ -26,7 +26,7 @@ d-i pkgsel/include string openssh-server ntp curl nfs-common build-essential \
     python-setuptools libusb-1.0-0 libusb-1.0-0-dev libudev-dev libftdi1 \
     libftdi-dev libftdipp1-dev libftdipp1-2v5 libhidapi-dev libhidapi-hidraw0 \
     libhidapi-libusb0 cmake autotools-dev autoconf pkg-config jimsh libtool \
-    valgrind openocd python-serial python3-serial xsltproc
+    valgrind openocd python-serial python3-serial xsltproc dfu-util
 
 d-i pkgsel/install-language-support boolean false
 d-i pkgsel/update-policy select none
diff --git a/dist/tools/packer/riot.json b/dist/tools/packer/riot.json
index 029f0b63ddba144c5e472cff92b56e8778a40961..d14c000489a1fd50df2207cad304ee29560f79f3 100644
--- a/dist/tools/packer/riot.json
+++ b/dist/tools/packer/riot.json
@@ -48,7 +48,9 @@
         ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "iotlab-m3", "--vendorid", "0x0403", "--productid",  "0x6010"],
         ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "samr21-xpro", "--vendorid", "0x03eb", "--productid",  "0x2111"],
         ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "Arduino Mega 2560", "--vendorid", "0x2341", "--productid",  "0x0042"],
-        ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "Phytec phyWAVE KW22", "--vendorid", "0x0d28", "--productid",  "0x0204"]
+        ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "Phytec phyWAVE KW22", "--vendorid", "0x0d28", "--productid",  "0x0204"],
+        ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "Bluepill", "--vendorid", "0x1d50", "--productid",  "0x6017"],
+        ["usbfilter", "add", "0", "--target", "{{.Name}}", "--name", "Bluepill", "--vendorid", "0x1d50", "--productid",  "0x6018"]
       ],
       "virtualbox_version_file": ".vbox_version",
       "vm_name": "{{user `vm_name`}}"
diff --git a/dist/tools/packer/udev_rules/99-custom.rules b/dist/tools/packer/udev_rules/99-custom.rules
index 9c3e189a801f0c74cdc17bc25d3ceedf677d2f8a..28c333c577b8021866a5e2345eb39f5d0a951edf 100644
--- a/dist/tools/packer/udev_rules/99-custom.rules
+++ b/dist/tools/packer/udev_rules/99-custom.rules
@@ -7,4 +7,8 @@ ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", MODE="660", GROUP="plugdev",
 # Arduino Due
 ATTRS{idVendor}=="2341", ATTRS{idProduct}=="003d", MODE="660", GROUP="plugdev", TAG+="uaccess"
 
+# bluepill
+ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="6017", MODE="660", GROUP="plugdev", TAG+="uaccess"
+ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="6018", MODE="660", GROUP="plugdev", TAG+="uaccess"
+
 LABEL="custom_rules_end"