diff --git a/system/boot/efibootmgr/actions.py b/system/boot/efibootmgr/actions.py
new file mode 100755
index 0000000000..456a4fbdc9
--- /dev/null
+++ b/system/boot/efibootmgr/actions.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def build():
+ shelltools.export("CFLAGS", "-Os")
+ autotools.make("all")
+
+def install():
+ pisitools.dosed("Makefile","BINDIR := /usr/sbin","BINDIR := %s/usr/sbin" % get.installDIR())
+ shelltools.makedirs("%s/usr/sbin" % get.installDIR())
+ shelltools.makedirs("%s/usr/lib" % get.installDIR())
+ shelltools.makedirs("%s/usr/share/man" % get.installDIR())
+ shelltools.makedirs("%s/usr/include" % get.installDIR())
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.insinto("/usr/lib", "src/lib/*.o")
+ pisitools.insinto("/usr/share/man", "src/man/*")
+ pisitools.insinto("/usr/include", "src/include/*.h")
diff --git a/system/boot/efibootmgr/pspec.xml b/system/boot/efibootmgr/pspec.xml
new file mode 100755
index 0000000000..8fb9cded2d
--- /dev/null
+++ b/system/boot/efibootmgr/pspec.xml
@@ -0,0 +1,48 @@
+
+
+
+
+ efibootmgr
+ https://github.com/vathpela/efibootmgr
+
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+ GPL2
+ app:console
+ Tool to modify UEFI Firmware Boot Manager Variables
+ a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager.
+ http://source.pisilinux.org/1.0/efibootmgr.tar.gz
+
+ pciutils
+ zlib
+ efivar
+ efivar-devel
+
+
+
+
+ efibootmgr
+
+ /usr/sbin
+ /usr/share/man
+ /usr/lib/*
+
+
+
+ efibootmgr-devel
+
+ /usr/include
+
+
+
+
+
+ 2014-09-27
+ 0.7.0.16
+ First release
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+
+
diff --git a/system/boot/efibootmgr/translations.xml b/system/boot/efibootmgr/translations.xml
new file mode 100755
index 0000000000..f3e83c97e6
--- /dev/null
+++ b/system/boot/efibootmgr/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ efibootmgr
+ UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç
+ UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç
+
+
diff --git a/system/boot/efivar/actions.py b/system/boot/efivar/actions.py
new file mode 100755
index 0000000000..054756ce7f
--- /dev/null
+++ b/system/boot/efivar/actions.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def build():
+ shelltools.export("CFLAGS", "-Os")
+ pisitools.dosed("Make.defaults","-O0","-Os")
+ autotools.make("libdir=/usr/lib bindir=/usr/bin")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s libdir=/usr/lib/" % get.installDIR())
diff --git a/system/boot/efivar/pspec.xml b/system/boot/efivar/pspec.xml
new file mode 100755
index 0000000000..e638ab7ed6
--- /dev/null
+++ b/system/boot/efivar/pspec.xml
@@ -0,0 +1,50 @@
+
+
+
+
+ efivar
+ https://github.com/vathpela/efivar
+
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+ LGPL2.1
+ app:console
+ Tools and library to manipulate EFI variables
+ Tools and library to manipulate EFI variables.
+ https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2
+
+
+
+ efivar
+
+ /usr/lib
+ /usr/share/man
+ /usr/bin
+
+
+
+ efivar-devel
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2015-02-21
+ 0.15
+ Version Bump
+ Osman Erkan
+ osman.erkan@pisilinux.org
+
+
+ 2014-09-27
+ 0.10.8
+ First release
+ Aydın Demirel
+ aydin.demirel@pisilinux.org
+
+
+
\ No newline at end of file
diff --git a/system/boot/efivar/translations.xml b/system/boot/efivar/translations.xml
new file mode 100755
index 0000000000..12aacfc122
--- /dev/null
+++ b/system/boot/efivar/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ efivar
+ EFI değişkenlerini işlemek için araçlar ve kütüphane
+ EFI değişkenlerini işlemek için araçlar ve kütüphane
+
+