Added tools/sarge/upgrade-hppa.sh and tools/sarge/upgrade-sparc.sh to

install the upgrade-kernel bits on CD#1
This commit is contained in:
Steve McIntyre 2005-06-05 01:21:39 +00:00
parent bc29265c97
commit a809e2abdc
4 changed files with 15 additions and 1 deletions

View File

@ -751,7 +751,7 @@ $(BDIR)/upgrade-stamp:
$(BASEDIR)/tools/$(CODENAME)/upgrade.sh; \
fi
$(Q)if [ -x "$(BASEDIR)/tools/$(CODENAME)/upgrade-$(ARCH).sh" ]; then \
$(BASEDIR)/tools/$(CODENAME)/upgrade-$(ARCH).sh; \
$(BASEDIR)/tools/$(CODENAME)/upgrade-$(ARCH).sh $(BDIR); \
fi
$(Q)touch $(BDIR)/upgrade-stamp

2
debian/changelog vendored
View File

@ -11,6 +11,8 @@ debian-cd (2.2.23) unstable; UNRELEASED
- Re-add the kernel-headers packages to match kernel images (only
on i386 and amd64). Closes: #249386
- Made list2cds more verbose
- Added tools/sarge/upgrade-hppa.sh and tools/sarge/upgrade-sparc.sh
to install the upgrade-kernel bits on CD#1
debian-cd (2.2.22) unstable; urgency=critical

6
tools/sarge/upgrade-hppa.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
echo "Copying the upgrade bits for hppa"
cp -a $MIRROR/dists/sarge/main/upgrade-kernel $1/CD1/upgrade-kernel
exit 0

6
tools/sarge/upgrade-sparc.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
echo "Copying the upgrade bits for sparc"
cp -a $MIRROR/dists/sarge/main/upgrade-kernel $1/CD1/upgrade-kernel
exit 0