summaryrefslogtreecommitdiff
path: root/package/adkinstall/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-06-28 11:44:49 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2010-06-28 11:44:49 +0200
commit6274e55f29fa492a2a34c437354c8fcc22e8a3d4 (patch)
tree0da0ff39de84aab60cf050b19c8cab4561a09664 /package/adkinstall/Makefile
parenta3d8e37ab74b7ad1092d15e1a9225b1e18584e26 (diff)
implement rescue mode installation via -r
if you have an alix board and like to have a fallback safemode system, you can use adkinstall with -r and install a kernel with initramfs as a read-only never changing rescue image. Grub will then installed on the same rescue partition on the compact flash card, to avoid a broken system after grub upgrade. System should always come up with the rescue system without any dependency to the live system.
Diffstat (limited to 'package/adkinstall/Makefile')
-rw-r--r--package/adkinstall/Makefile9
1 files changed, 3 insertions, 6 deletions
diff --git a/package/adkinstall/Makefile b/package/adkinstall/Makefile
index e758b1f2f..5210e9d49 100644
--- a/package/adkinstall/Makefile
+++ b/package/adkinstall/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= adkinstall
PKG_VERSION:= 1.0
-PKG_RELEASE:= 4
+PKG_RELEASE:= 5
PKG_DESCR:= installer for cf, mmc, sd or mtd devices
PKG_SECTION:= base
PKG_DEPENDS:= parted sfdisk e2fsprogs
@@ -31,13 +31,10 @@ do-install:
ifeq ($(ADK_LINUX_MIPS_RB532),y)
${INSTALL_BIN} ./src/adkinstall.rb532 \
$(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_ARM_FOXBOARD),y)
+else ifeq ($(ADK_LINUX_ARM_FOXG20),y)
${INSTALL_BIN} ./src/adkinstall.foxg20 \
$(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_MIPS_RB433),y)
- ${INSTALL_BIN} ./src/adkinstall.rb4xx \
- $(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_MIPS_RB411),y)
+else ifeq ($(ADK_LINUX_MIPS_RB4XX),y)
${INSTALL_BIN} ./src/adkinstall.rb4xx \
$(IDIR_ADKINSTALL)/sbin/adkinstall
else