Skip to content

Commit 58e61f1

Browse files
committed
Remove pycharm
1 parent c694928 commit 58e61f1

4 files changed

+5
-22
lines changed

bitcrazeVM_xubuntu-14.04.4-desktop_createVM.json

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@
1212
"guest_additions_mode": "disable",
1313
"disk_size": "30000",
1414
"hard_drive_interface": "sata",
15-
15+
1616
"vboxmanage": [
1717
["modifyvm", "{{.Name}}", "--memory", "1024", "--vram", "16", "--mouse", "usbtablet", "--rtcuseutc", "on", "--audio", "pulse", "--audiocodec", "ad1980", "--usb", "on", "--usbehci", "on", "--nestedpaging", "off"],
1818
["storageattach", "{{.Name}}", "--storagectl", "SATA Controller", "--port", "0", "--nonrotational", "on", "--discard", "on"]
1919
],
20-
20+
2121
"iso_url": "xubuntu-14.04.4-desktop-i386.iso",
2222
"iso_checksum": "2138d30d5978092b4c054ed623d54fdb",
2323
"iso_checksum_type": "md5",
24-
24+
2525
"ssh_password": "{{user `password`}}",
2626
"ssh_username": "{{user `user`}}",
2727
"ssh_wait_timeout": "10000s",
28-
28+
2929
"boot_command": [
3030
"<enter><enter><esc><enter> <wait>",
3131
"/casper/vmlinuz url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
@@ -35,11 +35,10 @@
3535
"boot_wait": "4s",
3636
"http_directory": "http",
3737
"shutdown_command": "echo {{user `password`}} | sudo -S shutdown -P now",
38-
38+
3939
"vboxmanage_post": [
4040
["modifyhd", "output-virtualbox-iso/{{.Name}}.vdi", "--compact"]
4141
]
4242
}
4343
]
4444
}
45-

bitcrazeVM_xubuntu-14.04.4-desktop_provisionVM.json

-5
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@
5252
"source": "{{user `contentDir`}}/{{user `gccFile`}}",
5353
"destination": "/home/bitcraze/{{user `gccFile`}}"
5454
},
55-
{
56-
"type": "file",
57-
"source": "{{user `contentDir`}}/{{user `pycharmFile`}}",
58-
"destination": "/home/bitcraze/{{user `pycharmFile`}}"
59-
},
6055
{
6156
"type": "file",
6257
"source": "{{user `contentDir`}}/{{user `eclipseFile`}}",

createBitcrazeVM.sh

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ PACKER_FILE2=bitcrazeVM_xubuntu-14.04.4-desktop_provisionVM.json
1111
GCC_ARM_FILE="gcc-arm-none-eabi-4_9-2014q4-20141203-linux.tar.bz2"
1212
GCC_ARM_URL="https://launchpad.net/gcc-arm-embedded/4.9/4.9-2014-q4-major/+download/$GCC_ARM_FILE"
1313

14-
PYCHARM_FILE="pycharm-community-2016.1.4.tar.gz"
15-
PYCHARM_URL="https://download.jetbrains.com/python/$PYCHARM_FILE"
16-
1714
ECLIPSE_FILE="eclipse-cpp-mars-1-linux-gtk.tar.gz"
1815
ECLIPSE_URL="http://saimei.acc.umu.se/mirror/eclipse.org/technology/epp/downloads/release/mars/1/$ECLIPSE_FILE"
1916

provision.sh

-8
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,6 @@ mv gcc-arm-none-eabi-*/ ~/bin/gcc-arm-none-eabi
8787
echo "\nPATH=\$PATH:$HOME/bin/gcc-arm-none-eabi/bin" >> ~/.profile
8888
rm gcc-arm-none-eabi-*.tar.bz2
8989

90-
if [ $ENABLE_PYCHARM -eq 1 ]; then
91-
# Extract PyCharm
92-
tar xf pycharm-community-*.tar.gz -C /opt/
93-
mv /opt/pycharm-community-* /opt/pycharm-community
94-
echo "\nPATH=\$PATH:/opt/pycharm-community/bin" >> ~/.profile
95-
fi
96-
rm pycharm-community-*.tar.gz
97-
9890
# Extract Eclipse
9991
tar xf eclipse-cpp-mars-1-linux-gtk.tar.gz -C /opt
10092
echo "\nPATH=\$PATH:/opt/eclipse" >> ~/.profile

0 commit comments

Comments
 (0)