diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-26 14:16:05 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-26 14:16:05 -0300 |
commit | fd06d127c443802c30138fd4f75e99641d20bd2f (patch) | |
tree | cf125130c57a1c6b877d89664bf567fbeaccba7b | |
parent | a016405f42f0e44bcea7ab719aa88b8041281549 (diff) | |
download | puppet-nodo-fd06d127c443802c30138fd4f75e99641d20bd2f.tar.gz puppet-nodo-fd06d127c443802c30138fd4f75e99641d20bd2f.tar.bz2 |
Adding nodo::utils::development::toolchain::arm
-rw-r--r-- | manifests/utils/development/toolchain/arm.pp | 7 | ||||
-rw-r--r-- | manifests/utils/plug.pp | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/manifests/utils/development/toolchain/arm.pp b/manifests/utils/development/toolchain/arm.pp new file mode 100644 index 0000000..8395a5f --- /dev/null +++ b/manifests/utils/development/toolchain/arm.pp @@ -0,0 +1,7 @@ +class nodo::utils::development::toolchain::arm { + package { [ 'linux-libc-dev-armel-cross', 'libc6-armel-cross', 'libc6-dev-armel-cross', + 'binutils-arm-linux-gnueabi', 'gcc-4.4-arm-linux-gnueabi', 'g++-4.4-arm-linux-gnueabi', + 'gdb-arm-linux-gnueabi' ]: + ensure => installed, + } +} diff --git a/manifests/utils/plug.pp b/manifests/utils/plug.pp index 861c346..fe28b55 100644 --- a/manifests/utils/plug.pp +++ b/manifests/utils/plug.pp @@ -1,6 +1,6 @@ # Common utilities for plug computers class nodo::utils::plug { - package { [ 'mtd-utils', 'cryptsetup', 'u-boot', 'smartmontools' ]: + package { [ 'mtd-utils', 'cryptsetup', 'u-boot', 'smartmontools', 'u-boot-tools' ]: ensure => installed, } } |