Changeset 23
- Timestamp:
- 10/30/06 23:29:45 (2 years ago)
- Files:
-
- branches/molekula/package/fix-eeprom/Makefile (modified) (1 diff)
- branches/molekula/package/fix-eeprom/files (deleted)
- branches/molekula/package/fix-eeprom/src/Makefile (modified) (2 diffs)
- branches/molekula/package/fix-eeprom/src/clear-eeprom.c (added)
- trunk/package/fix-eeprom/files/fix-eeprom.init (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/molekula/package/fix-eeprom/Makefile
r21 r23 30 30 define Package/fix-eeprom/install 31 31 install -d -m0755 $(1)/sbin 32 install -d -m0755 $(1)/etc/rc.d33 32 install -m0755 $(PKG_BUILD_DIR)/fix-eeprom $(1)/sbin/ 34 install -m0755 ./files/fix-eeprom.init $(1)/etc/rc.d/S01fix-eeprom35 33 endef 36 34 branches/molekula/package/fix-eeprom/src/Makefile
r21 r23 1 1 2 all: fix-eeprom 2 all: fix-eeprom clear-eeprom 3 3 4 4 %.o: %.c … … 8 8 $(CC) -o $@ $^ 9 9 10 clear-eeprom: clear-eeprom.o 11 $(CC) -o $@ $^ 12 10 13 clean: 11 rm -f *.o fix-eeprom 14 rm -f *.o fix-eeprom clear-eeprom trunk/package/fix-eeprom/files/fix-eeprom.init
r21 r23 1 1 #!/bin/ash 2 2 3 [ -f /proc/mounts ] || /sbin/mount_root 3 4 /sbin/fix-eeprom 4 5 /usr/bin/ipkg remove fix-eeprom
