source: ipk/ipkg-utils-050831/ipkg-make-familiar@ 21521

Last change on this file since 21521 was 4890, checked in by obi, 16 years ago

[ipk] fix executable rights

  • Property svn:executable set to *
File size: 296 bytes
Line 
1#!/bin/sh
2
3set -e
4
5. /etc/ipkg.conf
6
7MKFSJFFS2_FLAGS="-p -e 0x40000"
8
9ipkg update
10
11if ! ipkg install $*; then
12 echo "ipkg-make-familiar: *** Crash and Burn ***"
13 exit 1
14fi
15
16echo "Creating familiar.jffs2"
17chown -R root:root $IPKG_ROOT
18cd $IPKG_ROOT
19mkfs.jffs2 $MKFSJFFS2_FLAGS > ../familiar.jffs2
Note: See TracBrowser for help on using the repository browser.